Skip to content

Commit 76767d6

Browse files
committed
Tighten .jshintrc rules.
1 parent 6e116ee commit 76767d6

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.jshintrc

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
{
2+
"bitwise": true,
23
"curly": true,
4+
"eqeqeq": true,
5+
"evil": true,
36
"forin": true,
7+
"freeze": true,
48
"latedef": true,
5-
"evil": true,
69
"loopfunc": true,
7-
"undef": true,
10+
"noarg": true,
11+
"nonew": true,
12+
"proto": true,
813
"rhino": false,
9-
"proto": true
14+
"strict": "implied",
15+
"undef": true,
16+
"unused": "vars"
1017
}

0 commit comments

Comments
 (0)