You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
484 B
23 lines
484 B
3 years ago
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
|
commonjs: true,
|
||
|
es2021: true,
|
||
|
node: true
|
||
|
},
|
||
|
extends: ['standard', 'plugin:vue/vue3-essential'],
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 12,
|
||
|
parser: '@typescript-eslint/parser'
|
||
|
},
|
||
|
plugins: ['vue', '@typescript-eslint'],
|
||
|
rules: {
|
||
|
'comma-dangle': 'off',
|
||
|
'import/no-absolute-path': 'off',
|
||
|
'no-unused-vars': 'off',
|
||
|
camelcase: 'off',
|
||
|
'no-redeclare': 'off',
|
||
|
'vue/no-unused-components': 'off'
|
||
|
}
|
||
|
}
|