-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
43 lines (43 loc) · 1018 Bytes
/
.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
{
"env": {
"browser": true,
"es2020": true,
"node": true,
"mocha": true
},
"extends": ["eslint:recommended"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2021
},
"rules": {
"indent": 0,
"spaced-comment": 0,
"camelcase": 0,
"object-curly-spacing": 0,
"require-jsdoc": 0,
"keyword-spacing": 0,
"array-bracket-spacing": 0,
"key-spacing": 0,
"max-len": 0,
"comma-dangle": 0,
"quotes": 0,
"no-trailing-spaces": 0,
"padded-blocks": 0,
"eol-last": 0,
"no-prototype-builtins": 0,
"valid-jsdoc": 0,
"quote-props": 0,
"arrow-parens": 0,
"prefer-promise-reject-errors": 0,
"comma-spacing": 0,
"no-multi-spaces": 0,
"one-var": 0,
"guard-for-in": 0,
"no-tabs": 0,
"curly": 0
}
}