-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
56 lines (56 loc) · 1.55 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
{
"extends": "eslint:recommended",
"root": true,
"env": {
"node": true,
"es6": true
},
"globals": {
"Map": true,
"Promise": true,
"Uint8Array": true,
"BigInt": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 13
},
"plugins": ["node"],
"rules": {
"no-console": 0,
"arrow-parens": ["error", "always"],
"no-var": "error",
"prefer-const": "error",
"array-bracket-spacing": ["error", "never"],
"computed-property-spacing": ["error", "never"],
"eol-last": "error",
"eqeqeq": ["error", "smart"],
"indent": ["error", 2, { "SwitchCase": 1 }],
"no-confusing-arrow": ["error", { "allowParens": false }],
"no-extend-native": "error",
"no-mixed-spaces-and-tabs": "error",
"func-call-spacing": ["error", "never"],
"no-trailing-spaces": "error",
"no-unused-vars": "error",
"no-use-before-define": ["error", "nofunc"],
"object-curly-spacing": ["error", "always"],
"prefer-arrow-callback": "error",
"quotes": ["error", "single", "avoid-escape"],
"semi": ["error", "always"],
"space-infix-ops": "error",
"spaced-comment": ["error", "always"],
"keyword-spacing": ["error", { "before": true, "after": true }],
"template-curly-spacing": ["error", "never"],
"semi-spacing": "error",
"node/no-missing-require": "error",
"valid-jsdoc": [
"error",
{
"requireParamDescription": false,
"requireReturnDescription": false,
"requireReturnType": false,
"requireReturn": false
}
]
}
}