forked from borisdiakur/n_
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
43 lines (43 loc) · 934 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"immed": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"undef": true,
"strict": true,
"unused": "vars",
"trailing": true,
"latedef": true,
"indent": 4,
"quotmark": "single",
"maxparams": 4,
"maxdepth": 4,
"maxcomplexity": 5,
"onevar": false,
"white": true,
"globalstrict": true,
"globals": {
"__filename": false,
"__dirname": false,
"GLOBAL": false,
"global": false,
"module": false,
"require": false,
"Buffer": true,
"exports": true,
"process": true,
"setTimeout": true,
"clearTimeout": true,
"setInterval": true,
"clearInterval": true,
"setImmediate": true,
"clearImmediate": true
}
}