24 lines
581 B
JavaScript
24 lines
581 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
'extends': [
|
|
'plugin:vue/essential',
|
|
'eslint:recommended'
|
|
],
|
|
parserOptions: {
|
|
parser: '@babel/eslint-parser'
|
|
},
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'camelcase': 'off',
|
|
'vue/attribute-hyphenation': 'off',
|
|
//禁用命名规则
|
|
'vue/name-property-casing': 'off',
|
|
'vue/multi-word-component-names': 'off',
|
|
'vue/no-deprecated-scope-attribute': 'off',
|
|
}
|
|
}
|