forked from stdarg/tcp-port-used
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
44 lines (43 loc) · 1.09 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
{
"browser" : false,
"curly" : true,
"devel" : false,
"eqeqeq" : true,
"eqnull" : true,
"es5" : true,
"esnext" : true,
"expr" : true,
"forin" : false,
"immed" : false,
"indent" : 4,
"latedef" : false,
"laxcomma" : true,
"maxcomplexity" : 39,
"maxdepth" : 5,
"maxparams" : 7,
"maxstatements" : 100,
"multistr" : true,
"newcap" : true,
"noarg" : true,
"noempty" : true,
"nonew" : false,
"node" : true,
"plusplus" : false,
"regexp" : false,
"undef" : true,
"unused" : true,
"strict" : false,
"swindent" : true,
"sub" : true,
"trailing" : false,
"undef" : true,
"unused" : true,
"globals" : {
"before" : true,
"after" : true,
"it" : true,
"console" : true,
"should" : true,
"describe" : true
}
}