forked from mgechev/javascript-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jshintrc
More file actions
38 lines (38 loc) · 666 Bytes
/
.jshintrc
File metadata and controls
38 lines (38 loc) · 666 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
{
"browser": true,
"jquery": true,
"node": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"indent": 2,
"latedef": true,
"noarg": true,
"newcap": false,
"quotmark": "single",
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"white": true,
"freeze": true,
"immed": true,
"noempty": true,
"plusplus": true,
"undef": true,
"laxbreak": true,
"maxdepth": 4,
"loopfunc": true,
"maxcomplexity": 13,
"maxlen": 80,
"maxparams": 5,
"globals": {
"expect": true,
"it": true,
"describe": true,
"beforeEach": true,
"afterEach": true
}
}