Skip to content

Commit 2462c9b

Browse files
committed
Add jshintrc
1 parent 1e87e80 commit 2462c9b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.jshintrc

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"node": true,
3+
"browser": false,
4+
"esnext": true,
5+
"bitwise": false,
6+
"camelcase": true,
7+
"curly": true,
8+
"eqeqeq": true,
9+
"eqnull": true,
10+
"immed": true,
11+
"indent": 2,
12+
"latedef": true,
13+
"laxbreak": true,
14+
"newcap": true,
15+
"noarg": true,
16+
"quotmark": "double",
17+
"regexp": true,
18+
"undef": true,
19+
"unused": true,
20+
"strict": true,
21+
"trailing": true,
22+
"smarttabs": true,
23+
"globals": {
24+
"define": false
25+
}
26+
}

0 commit comments

Comments
 (0)