-
Notifications
You must be signed in to change notification settings - Fork 33
/
.jshintrc
executable file
·42 lines (39 loc) · 980 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
{
"browser" : true,
"esnext" : true,
"globalstrict" : false,
"quotmark" : true,
"smarttabs" : true,
"trailing" : true,
"undef" : true,
"unused" : true,
"globals": {
"jasmine" : false,
"spyOn" : false,
"it" : false,
"console" : false,
"describe" : false,
"expect" : false,
"beforeEach" : false,
"waits" : false,
"waitsFor" : false,
"runs" : false,
"require" : false,
"requirejs" : false
},
"maxerr" : 50,
"eqeqeq" : true,
"strict" : true,
"browser" : true,
"couch" : false,
"devel" : true,
"dojo" : false,
"jquery" : true,
"mootools" : false,
"node" : true,
"nonstandard" : false,
"prototypejs" : false,
"rhino" : false,
"worker" : false,
"wsh" : false,
"yui" : false