forked from csnover/TraceKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
36 lines (36 loc) · 764 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
{
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": false,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"quotmark": "single",
/* regexp: true, */
"undef": true,
"unused": true,
/* strict: true, //Added from site */
"sub": true,
"boss": true,
//dont' allow assignments to be evaluated as truthy/falsey */
"eqnull": true,
//Allow == null
"browser": true,
"indent": 4,
"smarttabs": true,
"devel": true,
"white": false,
"onecase": true,
"trailing": true,
"maxparams": 6,
"maxdepth": 9,
"maxerr": 20,
"globals": {
"ActiveXObject": false,
"define": false,
"global": false,
"module": false
}
}