-
Notifications
You must be signed in to change notification settings - Fork 18
/
.eslintrc
50 lines (50 loc) · 1.42 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"root":true,
"env":{
"browser": true,
"node":true
},
"parser":"vue-eslint-parser",
"extends":[
"plugin:vue/vue3-recommended",
"standard-with-typescript"
],
"parserOptions":{
"project":[
"./tsconfig.json"
],
"parser":"@typescript-eslint/parser",
"ecmaVersion":2020,
"ecmaFeatures":{
"jsx":true
},
"extraFileExtensions":[
".vue"
]
},
"rules":{
"no-console":"off",
"no-debugger":"off",
"no-control-regex":0,
"no-self-compare":0,
"space-infix-ops":0,
"vue/no-v-html": 0,
"vue/multi-word-component-names":0,
"vue/no-deprecated-slot-attribute":0,
"vue/no-deprecated-dollar-listeners-api":0,
"vue/max-attributes-per-line":"off",
"vue/singleline-html-element-content-newline":0,
"@typescript-eslint/return-await":"off",
"@typescript-eslint/no-explicit-any":"off",
"@typescript-eslint/no-var-requires":"off",
"@typescript-eslint/no-empty-function":"off",
"@typescript-eslint/explicit-function-return-type":"off",
"@typescript-eslint/strict-boolean-expressions":"off",
"@typescript-eslint/promise-function-async":"off",
"@typescript-eslint/no-floating-promises":"off",
"@typescript-eslint/prefer-nullish-coalescing":"off",
"@typescript-eslint/triple-slash-reference":"off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/no-misused-promises": "off"
}
}