Skip to content

Commit dab083f

Browse files
committed
[Update] Added .jshintrc
1 parent 57546ea commit dab083f

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

.jshintrc

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"curly": false,
3+
"eqeqeq": true,
4+
"eqnull": true,
5+
"bitwise": true,
6+
"camelcase": false,
7+
"forin": true,
8+
"immed": true,
9+
"indent": 4,
10+
"latedef": false,
11+
"laxcomma": true,
12+
"newcap": true,
13+
"noarg": true,
14+
"nonbsp": false,
15+
"noempty": true,
16+
"nonew": false,
17+
"plusplus": false,
18+
"regexp": true,
19+
"undef": true,
20+
"unused": true,
21+
"trailing": true,
22+
"maxparams": 5,
23+
"maxdepth": 5,
24+
"maxstatements": 50,
25+
"maxcomplexity": 10,
26+
"smarttabs": true,
27+
28+
"browser": true,
29+
"node": true,
30+
31+
"globals": {
32+
"process": true,
33+
"setTimeout": true,
34+
"require": true,
35+
"console": true,
36+
"module": true,
37+
"GLOBAL": true,
38+
"describe": true,
39+
"before": true,
40+
"it": true,
41+
"clientSockets": true,
42+
"__dirname": true
43+
}
44+
}

0 commit comments

Comments
 (0)