Skip to content

Commit f60eec8

Browse files
committed
chore(jshint): add more rules
1 parent 7cc0d80 commit f60eec8

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

.jshintrc

+18-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,29 @@
11
{
2-
"boss": true,
3-
"browser": true,
4-
"eqnull": true,
5-
"expr": true,
2+
"bitwise": true,
3+
"camelcase": false,
4+
"curly": true,
5+
"eqeqeq": true,
6+
"freeze": true,
67
"globalstrict": true,
78
"immed": true,
8-
"laxbreak": true,
9-
"loopfunc": true,
9+
"latedef": false,
1010
"newcap": true,
1111
"noarg": true,
1212
"noempty": true,
13-
"nonew": true,
14-
"quotmark": true,
15-
"smarttabs": true,
16-
"sub": true,
17-
"trailing": true,
13+
"quotmark": "single",
1814
"undef": true,
1915
"unused": true,
16+
"maxdepth": 4,
17+
"maxcomplexity": 8,
18+
19+
"eqnull": false,
20+
"esnext": true,
21+
22+
"browser": true,
23+
"jasmine": true,
24+
"validthis": true,
25+
2026
"globals": {
21-
"angular": false
27+
"angular": true
2228
}
2329
}

0 commit comments

Comments
 (0)