30 lines
635 B
JavaScript
30 lines
635 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
node: true
|
||
|
},
|
||
|
extends: [
|
||
|
'plugin:vue/essential',
|
||
|
'@vue/standard',
|
||
|
'@vue/typescript'
|
||
|
],
|
||
|
rules: {
|
||
|
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
|
||
|
'no-console': process.env.NODE_ENV === 'production' ? 2 : 0,
|
||
|
'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-parsing-error': [2, { "x-invalid-end-tag": false }],
|
||
|
},
|
||
|
parserOptions: {
|
||
|
parser: '@typescript-eslint/parser'
|
||
|
}
|
||
|
}
|