mirror of
https://gitee.com/goploy/goploy.git
synced 2024-11-30 03:07:59 +08:00
23 lines
523 B
JSON
23 lines
523 B
JSON
{
|
|
"parser": "vue-eslint-parser",
|
|
"parserOptions": {
|
|
"parser": "@typescript-eslint/parser",
|
|
"ecmaVersion": 2020,
|
|
"sourceType": "module"
|
|
},
|
|
"extends": [
|
|
"plugin:vue/vue3-recommended",
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"rules": {
|
|
"vue/script-setup-uses-vars": "error",
|
|
"vue/multi-word-component-names": 0,
|
|
"@typescript-eslint/no-explicit-any": ["off"]
|
|
},
|
|
"env": {
|
|
"vue/setup-compiler-macros": true
|
|
}
|
|
}
|