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.
24 lines
534 B
24 lines
534 B
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
},
|
|
root: true,
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:vue/vue3-recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'@vue/typescript/recommended',
|
|
],
|
|
parser: 'vue-eslint-parser',
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser',
|
|
sourceType: 'module'
|
|
},
|
|
plugins: ['vue', '@typescript-eslint'],
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'warn',
|
|
'vue/html-self-closing': 'off',
|
|
'vue/max-attributes-per-line': 'off'
|
|
},
|
|
};
|