forked from decentraland/bronzeage-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jshintrc
51 lines (44 loc) · 760 Bytes
/
.jshintrc
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
43
44
45
46
47
48
49
50
51
{
"bitwise": false,
"esversion": 6,
"curly": false,
"eqeqeq": true,
"freeze": true,
"latedef": "nofunc",
"maxparams": 7,
"noarg": true,
"shadow": "inner",
"undef": true,
"unused": "vars",
"boss": true,
"expr": true,
"eqnull": true,
"evil": true,
"loopfunc": true,
"proto": true,
"supernew": true,
"-W018": true,
"-W064": true,
"-W086": true,
"-W032": true,
"-W021": true,
"browser": true,
"browserify": true,
"node": true,
"nonstandard": true,
"typed": true,
"worker": false,
"camelcase": false,
"indent": 2,
"maxlen": 110,
"newcap": false,
"quotmark": "single",
"laxbreak": true,
"laxcomma": true,
"noyield": true,
"predef": [
"it",
"describe",
"beforeEach"
]
}