Skip to content

Commit b2cebfb

Browse files
committed
jshint fixes
1 parent fd940b0 commit b2cebfb

14 files changed

+907
-1169
lines changed

.jshintrc

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
// Environments
3+
"browser": true,
4+
"devel": true,
5+
"worker": true,
6+
7+
// Enforcing
8+
//"maxlen": 80,
9+
//"quotmark": "single",
10+
"trailing": true,
11+
"strict": false,
12+
13+
// Relaxing
14+
"boss": true,
15+
"funcscope": true,
16+
"globalstrict": true,
17+
"loopfunc": true,
18+
"maxerr": 1000,
19+
"nonstandard": true,
20+
"sub": true,
21+
"validthis": true,
22+
23+
"globals": {
24+
"_": false,
25+
"define" : false,
26+
"module" : false
27+
}
28+
}

0 commit comments

Comments
 (0)