forked from mapbox/geobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
38 lines (35 loc) · 794 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
35
36
37
38
{
"rules": {
"no-use-before-define": [2, "nofunc"],
"no-lonely-if": 2,
"no-else-return": 2,
"no-new": 2,
"no-throw-literal": 2,
"no-self-compare": 2,
"no-void": 2,
"no-eq-null": 2,
"quotes": [2, "single"],
"indent": 2,
"camelcase": 2,
"comma-style": 2,
"key-spacing": 2,
"new-cap": 2,
"no-empty": 2,
"no-multi-spaces": 2,
"wrap-iife": 2,
"space-after-function-name": 2,
"space-in-parens": 2,
"space-before-blocks": 2,
"space-after-keywords": 2,
"space-unary-ops": 2,
"space-before-function-parentheses": [2, {"anonymous": "always", "named": "never"}],
"space-in-brackets": 2,
"brace-style": 0,
"curly": 0,
"no-shadow": 0
},
"env": {
"node": true,
"browser": true
}
}