18 lines
451 B
JavaScript
18 lines
451 B
JavaScript
|
|
module.exports = {
|
||
|
|
root: true,
|
||
|
|
env: {
|
||
|
|
node: true
|
||
|
|
},
|
||
|
|
extends: [
|
||
|
|
'plugin:vue/essential',
|
||
|
|
// '@vue/standard'
|
||
|
|
],
|
||
|
|
parserOptions: {
|
||
|
|
parser: 'babel-eslint'
|
||
|
|
},
|
||
|
|
rules: {
|
||
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', // 禁止生产使用debug模式
|
||
|
|
'space-before-function-paren': 0 //去掉function与()之间空格
|
||
|
|
}
|
||
|
|
}
|