-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
34 lines (33 loc) · 861 Bytes
/
.eslintrc
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,
"mocha": true,
"es6": true
},
"globals": {
"require": true
},
"rules": {
"brace-style": [2, "stroustrup", { "allowSingleLine": true }],
"default-case": 2,
"indent": [2, "space", {"indentSwitchCase": true}],
"no-catch-shadow": 2,
"no-eq-null": 2,
"no-floating-decimal": 2,
"no-inline-comments": 2,
"no-nested-ternary": 2,
"no-param-reassign": 2,
"no-reserved-keys": 2,
"no-self-compare": 2,
"no-throw-literal": 2,
"no-undefined": 2,
"no-void": 2,
"quotes": [1, "double"],
"space-after-keywords": [2, "always"],
"space-after-blocks": [2, "always"],
"strict": [2, "never"],
"wrap-iife": [2, "outside"]
},
"plugins": [
]
}