forked from Project-OSRM/osrm-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
34 lines (34 loc) · 660 Bytes
/
Copy path.eslintrc
File metadata and controls
34 lines (34 loc) · 660 Bytes
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,
"browser": true
},
"globals": {
"L": true
},
"rules": {
"indent": [2, 2],
"comma-dangle": [2, "never"],
"space-before-blocks": 2,
"space-after-keywords": 2,
"space-unary-ops": 2,
"no-use-before-define": [2, "nofunc"],
"camelcase": 0,
"comma-style": 2,
"eqeqeq": 0,
"new-cap": 2,
"no-new": 2,
"brace-style": 2,
"no-multi-spaces": 0,
"no-underscore-dangle": [0],
"no-self-compare": 2,
"no-void": 2,
"no-eq-null": 2,
"quotes": [0],
"curly": 0,
"dot-notation": [0],
"no-shadow": 0,
"no-alert": 0,
"consistent-return": 0
}
}