2024-08-26 14:07:57 +08:00
|
|
|
/* eslint-env node */
|
|
|
|
module.exports = {
|
|
|
|
extends: [
|
|
|
|
'eslint:recommended',
|
|
|
|
'plugin:vue/vue3-essential',
|
|
|
|
],
|
|
|
|
parserOptions: {
|
2024-08-31 22:13:39 +08:00
|
|
|
ecmaFeatures: {
|
|
|
|
jsx: true,
|
|
|
|
},
|
2024-08-26 14:07:57 +08:00
|
|
|
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',
|
|
|
|
},
|
|
|
|
};
|