forked from CalthorpeAnalytics/urbanfootprint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
40 lines (40 loc) · 747 Bytes
/
Copy path.eslintrc
File metadata and controls
40 lines (40 loc) · 747 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
35
36
37
38
39
40
{
"rules": {
"indent": [2, 4],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
],
"brace-style": [1, "1tbs"],
"no-trailing-spaces": 2,
"no-unused-vars": [2, {"args": "none"}],
"comma-dangle": [1, "always-multiline"],
"no-console": 1,
},
"globals": {
"$",
"F",
"Footprint",
"L",
"NO",
"SC",
"YES",
"d3",
"sc_require",
"sc_static",
"sc_super",
"io"
},
"env": {
"browser": true
},
"extends": "eslint:recommended"
}