forked from SBoudrias/AST-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jshintrc
44 lines (44 loc) · 900 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
40
41
42
43
44
{
"node" : true,
"bitwise" : true,
"boss" : true,
"camelcase" : true,
"debug" : true,
"eqeqeq" : true,
"eqnull" : true,
"expr" : true,
"immed" : true,
"iterator" : true,
"lastsemic" : true,
"laxbreak" : true,
"laxcomma" : true,
"loopfunc" : true,
"maxlen" : 120,
"multistr" : true,
"newcap" : true,
"noarg" : true,
"onecase" : true,
"onevar" : false,
"plusplus" : false,
"proto" : true,
"quotmark" : "single",
"regexdash" : true,
"regexp" : true,
"scripturl" : true,
"shadow" : true,
"smarttabs" : true,
"strict" : false,
"sub" : true,
"supernew" : true,
"undef" : true,
"validthis" : true,
"withstmt" : true,
"globals": {
"describe": true,
"it": true,
"before": true,
"after": true,
"beforeEach": true,
"afterEach": true
}
}