mirror of
https://github.com/yzcheng90/x-springboot-ui
synced 2025-11-03 21:20:36 +08:00
23 lines
480 B
JavaScript
23 lines
480 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
parserOptions: {
|
|
parser: '@babel/eslint-parser',
|
|
},
|
|
plugins: ['vue'],
|
|
extends: ['plugin:vue/essential', 'eslint:recommended'],
|
|
rules: {
|
|
// http://eslint.cn/docs/rules/
|
|
'vue/no-parsing-error': 'off',
|
|
'no-unused-vars': 'error',
|
|
'no-dupe-args': 'error',
|
|
'no-empty': 'off',
|
|
'no-extra-semi': 'off',
|
|
'no-constant-condition': 'off',
|
|
'no-console': 'error',
|
|
'vue/multi-word-component-names': 'off',
|
|
},
|
|
};
|