-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jshintrc
More file actions
47 lines (45 loc) · 815 Bytes
/
.jshintrc
File metadata and controls
47 lines (45 loc) · 815 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"bitwise": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"latedef": "nofunc",
"noarg": true,
"nonbsp": true,
"nonew": false,
"plusplus": false,
"undef": true,
"unused": false,
"strict": false,
"maxparams": 20,
"maxdepth": 5,
"maxstatements": 40,
"maxcomplexity": 10,
"asi": false,
"boss": false,
"debug": false,
"eqnull": true,
"evil": false,
"expr": false,
"funcscope": false,
"strict": "global",
"iterator": false,
"lastsemic": false,
"loopfunc": true,
"maxerr": false,
"moz": false,
"notypeof": false,
"proto": false,
"scripturl": false,
"shadow": false,
"supernew": false,
"validthis": false,
"noyield": false,
"node": true,
"globals": {
"window": true,
"document": false,
"angular": false
}
}