forked from feedhenry/fh-mbaas-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jshintrc
33 lines (33 loc) · 827 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
{
"globals": {
"describe": true,
"it": true,
"beforeEach": true
},
"asi" : true,
"camelcase" : false,
"bitwise" : false,
"unused" : true,
"laxbreak" : true,
"laxcomma" : true,
"curly" : false,
"eqeqeq" : true,
"evil" : true,
"expr" : true,
"forin" : false,
"immed" : true,
"latedef" : false,
"newcap" : false,
"noarg" : true,
"noempty" : true,
"nonew" : true,
"plusplus" : false,
"regexp" : true,
"undef" : false,
"strict" : false,
"sub" : true,
"trailing" : true,
"node" : true,
"maxerr" : 100,
"indent" : 2
}