-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc
47 lines (47 loc) · 942 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"root": true,
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"plugin:vue/vue3-recommended",
"eslint:recommended",
"@vue/typescript/recommended",
"@vue/prettier",
"@vue/prettier/@typescript-eslint"
],
"parserOptions": {
"ecmaVersion": 2021
},
"plugins": [],
"rules": {
"vue/no-v-html": 0,
"vue/singleline-html-element-content-newline": 0,
"vue/multi-word-component-names": 0,
"vue/html-indent": 0,
"vue/max-attributes-per-line": 0,
"vue/html-self-closing": [
"error",
{
"html": {
"void": "any",
"normal": "any",
"component": "always"
},
"svg": "any",
"math": "always"
}
],
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
],
"@typescript-eslint/ban-ts-comment": 0,
"no-undef": 0,
"no-console": 0
}
}