-
Notifications
You must be signed in to change notification settings - Fork 1
/
jshint.json
40 lines (39 loc) · 1.13 KB
/
jshint.json
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
{
"options": {
"bitwise": true
,"camelcase": true
,"curly": true
,"eqeqeq": false
,"es3": false
,"forin": false
,"freeze": true
,"immed": true
,"indent": false
,"latedef": true
,"newcap": false
,"noarg": true
,"noempty": true
,"nonbsp": true
,"nonew": true
,"plusplus": false
,"quotmark": true
,"undef": false
,"unused": true
,"strict": true
,"trailing": true
,"maxparams": 10
,"maxdepth": 5
,"maxstatements": 400
,"asi": false
,"smarttabs": false
,"globals": {
"d3": true,
"BarChart": true,
"M3": true,
"M3Class": true,
"M3CreateClass":true,
"M3Exted": true,
"M3Mixin": true
}
}
}