forked from natfrp/wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
62 lines (62 loc) · 1.36 KB
/
.eslintrc.json
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
51
52
53
54
55
56
57
58
59
60
61
62
{
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"@vue/typescript/recommended",
"plugin:vue/vue3-recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"plugins": [
"vue",
"@typescript-eslint"
],
"rules": {
"vue/script-indent": [
"error",
"tab"
],
"vue/html-indent": [
"error",
"tab"
],
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-undef": "off",
"object-curly-spacing": [
"error",
"always"
],
"space-in-parens": "error",
"space-infix-ops": "error",
"spaced-comment": "error",
"no-unused-labels": "off",
"no-unused-vars": "off",
"vue/no-v-html": "off",
"vue/multi-word-component-names": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-module-boundary-types": "off"
},
"ignorePatterns": [
"dist/",
"node_modules/"
]
}