28 lines
623 B
JavaScript
28 lines
623 B
JavaScript
/*
|
|
* @Description:
|
|
* @Version: 1.0
|
|
* @Autor: zhuyijun
|
|
* @Date: 2021-11-21 14:34:40
|
|
* @LastEditTime: 2021-11-21 21:09:23
|
|
*/
|
|
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',
|
|
'space-before-function-paren': 0,
|
|
indent: 'off',
|
|
"eslint-disable-next-line": false
|
|
}
|
|
}
|