-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.jshintrc
More file actions
39 lines (36 loc) · 681 Bytes
/
.jshintrc
File metadata and controls
39 lines (36 loc) · 681 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
{
"bitwise": true,
"curly": false,
"eqeqeq": true,
"forin": true,
"freeze": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonbsp": true,
"nonew": false,
"quotmark": "single",
"undef": true,
"maxcomplexity": 10,
"maxdepth": 4,
"maxlen": 120,
"maxparams": 5,
"maxstatements": 25,
"eqnull": true,
"esnext": true,
"node": true,
"globals": {
"describe": false,
"xdescribe": false,
"ddescribe": false,
"it": false,
"xit": false,
"beforeEach": false,
"afterEach": false,
"before": false,
"after": false
}
}