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.
28 lines
616 B
28 lines
616 B
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'plugin:vue/vue3-essential',
|
|
'eslint:recommended',
|
|
'@vue/typescript/recommended',
|
|
'@vue/prettier',
|
|
'@vue/prettier/@typescript-eslint',
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 2020,
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
},
|
|
rules: {
|
|
'no-console': 'off',
|
|
'no-debugger': 'warn',
|
|
'vue/no-unused-components': 'off',
|
|
'@typescript-eslint/no-explicit-any': ['off'],
|
|
'@typescript-eslint/ban-ts-comment': ['off'],
|
|
'@typescript-eslint/no-var-requires': 0,
|
|
'vue/no-unused-vars': 'off',
|
|
},
|
|
};
|