forked from stamen/ecoengine-compare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
34 lines (34 loc) · 817 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": {
"browser": true,
"node": true,
"mocha": true
},
"rules": {
"eqeqeq": 2,
"curly": 2,
"quotes": [2, "double", "avoid-escape"],
"block-scoped-var": 2,
"no-else-return": 2,
"no-eq-null": 2,
"no-self-compare": 2,
"no-void": 2,
"no-warning-comments": 1,
"global-strict": 2,
"no-mixed-requires": [1, true],
"no-sync": 1,
"brace-style": 2,
"comma-style": 2,
"no-lonely-if": 2,
"no-multiple-empty-lines": 2,
"no-nested-ternary": 2,
"no-ternary": 2,
"padded-blocks": [2, "never"],
"quote-props": [2, "as-needed"],
"space-after-function-name": [2, "never"],
"space-after-keywords": [2, "always"],
"space-before-blocks": [2, "always"],
"space-in-parens": [2, "never"],
"spaced-line-comment": 2
}
}