29 lines
687 B
JSON
29 lines
687 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"parser": "vue-eslint-parser",
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:vue/vue3-essential",
|
|
"@vue/eslint-config-prettier"
|
|
|
|
],
|
|
"rules": {
|
|
"vue/multi-word-component-names": "off",
|
|
"vue/no-reserved-component-names": "warn",
|
|
"vue/no-mutating-props": "warn",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
"no-undef": "off"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module",
|
|
"parser": "@typescript-eslint/parser"
|
|
}
|
|
}
|