-
Notifications
You must be signed in to change notification settings - Fork 2
/
.jshintrc
39 lines (39 loc) · 857 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
{
"nonew" : true,
"plusplus" : true,
"curly" : true,
"latedef" : "nofunc",
"unused" : "strict",
"noarg" : true,
"indent" : 2,
"forin" : true,
"noempty" : true,
"quotmark" : "single",
"maxparams" : 5,
"node" : true,
"eqeqeq" : true,
"strict" : true,
"undef" : true,
"bitwise" : true,
"newcap" : true,
"immed" : true,
"browser" : true,
"camelcase" : true,
"nonbsp" : true,
"globals" : {
"after" : false,
"afterEach" : false,
"angular" : false,
"before" : false,
"beforeEach" : false,
"browser" : false,
"describe" : false,
"expect" : false,
"inject" : false,
"it" : false,
"jasmine" : false,
"spyOn" : false,
"$" : false,
"_" : false
}
}