19 lines
434 B
JavaScript
19 lines
434 B
JavaScript
|
/* eslint-env node */
|
||
|
module.exports = {
|
||
|
extends: [
|
||
|
'eslint:recommended',
|
||
|
'plugin:vue/vue3-essential',
|
||
|
],
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 'latest',
|
||
|
},
|
||
|
root: true,
|
||
|
rules: {
|
||
|
'vue/html-self-closing': 'off',
|
||
|
'vue/max-attributes-per-line': 'off',
|
||
|
'vue/multiline-html-element-content-newline': 'off',
|
||
|
'vue/require-default-prop': 'off',
|
||
|
'vue/singleline-html-element-content-newline': 'off',
|
||
|
},
|
||
|
};
|