-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
88 lines (88 loc) · 2.05 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"root": true,
"extends": ["eslint:recommended", "plugin:vue/vue3-recommended"],
"plugins": [
"json"
],
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
},
"env": {
"node": true,
"es6": true
},
"rules": {
"no-console": "off",
"no-unused-vars": "off",
"array-bracket-spacing": "error",
"arrow-spacing": "error",
"brace-style": [
"error",
"allman"
],
"comma-spacing": "error",
"comma-style": "error",
"consistent-return": "error",
"computed-property-spacing": "error",
"eol-last": "error",
"indent": [
"error",
2,
{
"SwitchCase": 1,
"CallExpression": {
"arguments": "off"
},
"MemberExpression": "off",
"ArrayExpression": "off",
"ignoreComments": true
}
],
"key-spacing": "error",
"keyword-spacing": "error",
"linebreak-style": "error",
"new-parens": "error",
"no-prototype-builtins": "off",
"no-spaced-func": "error",
"no-trailing-spaces": "error",
"no-var": "error",
"no-whitespace-before-property": "error",
"object-curly-spacing": "error",
"operator-assignment": "error",
"operator-linebreak": "error",
"padded-blocks": [
"error",
"never"
],
"prefer-rest-params": "warn",
"prefer-spread": "warn",
"quotes": [
"error",
"double",
{
"avoidEscape": true
}
],
"require-yield": "warn",
"require-atomic-updates": [
"off",
"https://github.com/eslint/eslint/issues/11899"
],
"semi": "error",
"semi-spacing": "error",
"space-before-function-paren": [
"error",
"never"
],
"space-in-parens": "error",
"space-infix-ops": "error",
"space-unary-ops": "error",
"spaced-comment": "error",
"yield-star-spacing": "error",
"vue/singleline-html-element-content-newline": "off",
"vue/multiline-html-element-content-newline": "off",
"vue/multi-word-component-names": "off",
"vue/max-attributes-per-line": "off"
}
}