-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
30 lines (30 loc) · 906 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"root": true,
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": ["plugin:vue/vue3-recommended", "eslint:recommended", "@vue/typescript/recommended"],
"parserOptions": {
"ecmaVersion": 2021
},
"plugins": [],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-types": "off",
"vue/multi-word-component-names": "off",
"vue/max-attributes-per-line": "off",
"vue/no-v-html": "off",
"vue/no-v-text-v-html-on-component": "off",
"vue/html-self-closing": "off",
"vue/no-use-v-if-with-v-for": "off",
"vue/no-setup-props-destructure": "off",
"no-async-promise-executor": "off",
"no-prototype-builtins": "off",
"@typescript-eslint/no-this-alias": "off",
"vue/singleline-html-element-content-newline": "off",
"@typescript-eslint/no-unused-vars": "warn",
"no-empty": "off"
}
}