37 lines
650 B
JavaScript
37 lines
650 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
|
||
|
env: {
|
||
|
node: true
|
||
|
},
|
||
|
|
||
|
extends: [
|
||
|
'plugin:vue/essential',
|
||
|
'@vue/standard',
|
||
|
'@vue/typescript'
|
||
|
],
|
||
|
|
||
|
parserOptions: {
|
||
|
parser: '@typescript-eslint/parser'
|
||
|
},
|
||
|
|
||
|
rules: {
|
||
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||
|
'no-unused-vars': [
|
||
|
0,
|
||
|
{
|
||
|
vars: 'all',
|
||
|
args: 'none'
|
||
|
}
|
||
|
],
|
||
|
semi: 0,
|
||
|
eqeqeq: 0,
|
||
|
'one-var': 0,
|
||
|
camelcase: 0,
|
||
|
'no-case-declarations': 0,
|
||
|
'space-before-function-paren': 0,
|
||
|
'vue/no-unused-components': 0
|
||
|
}
|
||
|
}
|