-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.jshintrc
43 lines (42 loc) · 1.07 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
{
"browser" : false,
"curly" : false,
"devel" : false,
"eqeqeq" : true,
"eqnull" : true,
"es5" : true,
"esnext" : true,
"expr" : true,
"forin" : false,
"immed" : false,
"indent" : 4,
"latedef" : false,
"laxcomma" : true,
"maxdepth" : 5,
"maxlen" : 9110,
"maxparams" : 4,
"maxstatements" : 100,
"newcap" : true,
"noarg" : true,
"noempty" : true,
"nonew" : false,
"node" : true,
"onevar" : false,
"plusplus" : false,
"quotmark" : "single",
"regexp" : false,
"undef" : true,
"unused" : true,
"strict" : true,
"trailing" : true,
"undef" : true,
"unused" : true,
"white" : false,
"globals" : {
"it" : false,
"console" : true,
"describe" : false,
"toString" : false,
"window" : true
}
}