forked from hmagph/iot-play-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
33 lines (33 loc) · 844 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
{
"bitwise" : true,
"browser" : true,
"curly" : true,
"eqeqeq" : true,
"es3" : false,
"forin" : true,
"freeze" : true,
"funcscope" : false,
"immed" : true,
"jquery" : true,
"latedef" : true,
"maxparams" : 7,
"maxdepth" : 5,
"maxcomplexity" : 10,
"maxstatements" : 30,
"mocha" : true,
"newcap" : true,
"noarg" : true,
"node" : true,
"noempty" : true,
"nonew" : true,
"plusplus" : true,
"undef" : true,
"unused" : true,
"strict" : true,
"trailing" : true,
"globals": {
"angular" : true,
"Polymer" : false,
"DeployToBluemixIFrame" : false
}
}