-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.jshintrc
53 lines (45 loc) · 1.23 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
{
"passfail" : false,
"maxerr" : 100,
"browser" : true,
"node" : false,
"jquery" : true,
"predef" : [ "goinstant" ],
"debug" : false,
"devel" : true,
"strict" : false,
"globalstrict" : false,
"quotmark" : "single",
"asi" : false,
"laxbreak" : false,
"bitwise" : true,
"boss" : false,
"curly" : true,
"eqeqeq" : true,
"eqnull" : false,
"evil" : false,
"expr" : false,
"forin" : false,
"immed" : true,
"latedef" : true,
"loopfunc" : false,
"noarg" : true,
"regexp" : true,
"regexdash" : false,
"scripturl" : true,
"shadow" : false,
"supernew" : false,
"undef" : true,
"nomen" : false,
"unused" : true,
"newcap" : false,
"noempty" : true,
"nonew" : true,
"nomen" : true,
"onevar" : true,
"plusplus" : true,
"sub" : true,
"trailing" : true,
"white" : true,
"indent" : 4
}