-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
30 lines (30 loc) · 942 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
{
"camelcase" : true,
"curly" : true,
"eqeqeq" : true,
"expr" : true,
"forin" : true,
"immed" : true,
"indent" : 2,
"jquery" : true,
"latedef" : "nofunc",
"newcap" : false,
"noarg" : true,
"node" : true,
"nonbsp" : true,
"quotmark" : "single",
"undef" : true,
"unused" : "vars",
"trailing" : true,
"globals": {
"jQuery" : true,
"after" : false,
"afterEach" : false,
"before" : false,
"beforeEach" : false,
"context" : false,
"describe" : false,
"it" : false,
"window" : false
}
}