-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.json
34 lines (34 loc) · 911 Bytes
/
index.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
{
"env": {
"node": true
},
"ecmaFeatures": {
"generators": true
},
"rules": {
"complexity": [ 1, 5 ],
"consistent-return": 0,
"curly": [ 2, "multi-line" ],
"eqeqeq": [ 2, "allow-null" ],
"generator-star-spacing": [ 1, "after" ],
"max-len": [ 1, 80 ],
"max-params": [ 1, 5 ],
"max-nested-callbacks": [ 1, 3 ],
"no-octal-escape": 0,
"no-process-exit": 0,
"no-shadow": 0,
"no-sync": 1,
"no-underscore-dangle": 0,
"no-unused-expressions": 0,
"no-use-before-define": [ 2, "nofunc" ],
"space-after-keywords": [ 1, "always" ],
"space-before-blocks": [ 1, "always" ],
"space-before-function-paren": [ 1, { "anonymous": "always", "named": "never" } ],
"space-in-parens": [ 1, "never" ],
"space-infix-ops": 2,
"space-return-throw-case": 2,
"space-unary-ops": 2,
"strict": 0,
"quotes": [ 1, "single" ]
}
}