Skip to content

Commit 6575b01

Browse files
committed
Add updated jshintrc
Most importantly this adds support for ES6
1 parent 6880d72 commit 6575b01

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

.jshintrc

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
{
22
"node": true,
33
"curly": true,
4-
"latedef": true,
5-
"quotmark": true,
4+
"eqeqeq": true,
5+
"esversion": 6,
6+
"freeze": true,
7+
"immed": true,
8+
"indent": 2,
9+
"latedef": false,
10+
"newcap": true,
11+
"noarg": true,
12+
"noempty": true,
13+
"nonbsp": true,
14+
"nonew": true,
15+
"plusplus": false,
16+
"quotmark": "single",
617
"undef": true,
718
"unused": false,
8-
"trailing": true
19+
"maxparams": 4,
20+
"maxdepth": 4,
21+
"maxlen": 140
922
}

0 commit comments

Comments
 (0)