mirror of
https://gitee.com/ShopeX/ECShopX_desktop-frontend
synced 2026-05-13 01:45:58 +08:00
19 lines
444 B
JavaScript
19 lines
444 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
es6: true
|
|
},
|
|
extends: ['plugin:vue/essential', 'eslint:recommended', '@vue/prettier'],
|
|
parserOptions: {
|
|
parser: 'babel-eslint'
|
|
},
|
|
rules: {
|
|
'no-control-regex': 0,
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'no-unused-vars': 'off'
|
|
}
|
|
}
|