forked from GMOD/Apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
29 lines (28 loc) · 775 Bytes
/
.jshintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"asi": true, //allow missing semicolon
"-W041": false,
"-W009": false,
"-W010": false,
"-W018":false, //incorrect use of !
"-W032":false, //unnecessary semicolon allowed
"expr": true, // allow returning assignment expressions
"boss": true, // allow if statement assignment expressions
"browser": true,
"dojo": true,
"evil": true, // allow eval
"laxbreak": true,
"laxcomma": true,
"loopfunc": true,
"funcscope": true,
"maxlen": 10000,
"indent": 4,
"shadow": true,
"maxerr": 250,
"sub": true,
"predef": [ "require", "define", "SockJS", "Stomp", "bbop", "amigo" ],
"maxcomplexity": 40,
"indent": 2,
"undef": true,
"trailing": true,
"devel": true
}