-
Notifications
You must be signed in to change notification settings - Fork 251
/
Copy path.jshintrc
63 lines (63 loc) · 1.23 KB
/
.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"esversion": 11,
"node": true,
"browser": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": false,
"laxbreak": true,
"newcap": true,
"noarg": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"multistr": true,
"-W064": true,
"-W069": true,
"-W083": true,
"-W084": true,
"globals": {
"iceStudio": false,
"Icestudio": false,
"iceStudioReady": false,
"domCache": false,
"iprof": false,
"IceProfiler": false,
"IceBlock": false,
"subModuleActive": false,
"ICEpm": false,
"IcePlugManager": false,
"iceConsole": false,
"IceLogger": false,
"IceEventBus": false,
"IceTemplateSystem": false,
"IceParametricHelper": false,
"Mustache": false,
"jexcel": false,
"nw": false,
"Snap": false,
"mina": false,
"$": false,
"angular": false,
"console": false,
"alertify": false,
"joint": false,
"_": false,
"svgPanZoom": false,
"Backbone": false,
"async": false,
"gettext": false,
"ace": false,
"g": false,
"V": false,
"IceCollection": false,
"IceHD": false,
"WafleModal": false
}
}