-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jshintrc
64 lines (63 loc) · 1.63 KB
/
.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
52
53
54
55
56
57
58
59
60
61
62
63
{
"asi" : false,
"bitwise" : true,
"boss" : false,
"browser" : true,
"couch" : true,
"curly" : true,
"debug" : false,
"devel" : true,
"eqeqeq" : true,
"eqnull" : false,
"es5" : false,
"evil" : false,
"expr" : false,
"forin" : true,
"funcscope" : false,
"globalstrict" : false,
"indent" : 4,
"immed" : true,
"jquery" : true,
"latedef" : true,
"laxbreak" : false,
"loopfunc" : false,
"maxparams" : 4,
"maxdepth" : 6,
"maxstatements": 30,
// "maxcomplexity": 3,
// "maxlen" : 103,
"mootools" : true,
"newcap" : true,
"noarg" : true,
"node" : true,
"noempty" : true,
"nonew" : true,
"nomen" : false,
"onevar" : false,
"passfail" : false,
"plusplus" : true,
"quotmark" : true,
"regexdash" : false,
"regexp" : true,
"rhino" : false,
"undef" : true,
"unused" : true,
"shadow" : false,
"strict" : true,
"sub" : false,
"supernew" : false,
"trailing" : true,
"white" : false,
"wsh" : false,
"globals" : { "goog": true,
"ga": true,
"ol": true,
"describe": true,
"it": true,
"expect": true,
"beforeEach": true,
"afterEach": true,
"sinon": true,
"after": true,
"before": true }
}