19 lines
434 B
JSON
19 lines
434 B
JSON
{
|
|
"root": true,
|
|
"parser": "vue-eslint-parser",
|
|
"parserOptions": {
|
|
"parser": "@typescript-eslint/parser"
|
|
},
|
|
"plugins": [ "@typescript-eslint" ],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:vue/vue3-recommended"
|
|
],
|
|
"rules": {
|
|
"vue/multi-word-component-names": "off",
|
|
"vue/require-default-prop": "off",
|
|
"@typescript-eslint/no-explicit-any": "off"
|
|
}
|
|
}
|