forked from bluehalo/leaflet-d3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
42 lines (35 loc) · 780 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
39
40
41
42
{
"parserOptions": {
"sourceType": "module"
},
"env": {
"es6": true,
"browser": true
},
"extends": "eslint:recommended",
"rules": {
"no-unused-vars": [ "error", { "args": "none" } ],
"no-mixed-spaces-and-tabs": [ "error", "smart-tabs" ],
"array-bracket-spacing": [ "error", "always" ],
"block-spacing": [ "error", "always" ],
"brace-style": [ "error", "stroustrup", { "allowSingleLine": true } ],
"comma-spacing": [ "error" ],
"space-before-blocks": [ "error", "always" ]
},
"globals": {
"console": true,
"require": true,
"window": true,
"d3": true,
"d3_hexbin": true,
"L": true,
"after": true,
"afterEach": true,
"before": true,
"beforeEach": true,
"context": true,
"describe": true,
"it": true,
"should": true
}
}