forked from mikanda/node-odt
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.jshintrc
More file actions
44 lines (38 loc) · 708 Bytes
/
.jshintrc
File metadata and controls
44 lines (38 loc) · 708 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
{
/* Enforcing options */
"bitwise": false,
"camelcase": true,
"curly": false,
"eqeqeq": true,
"forin": true,
"immed": false,
"indent": 2,
"latedef": false,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"plusplus": false,
/* "quotmark": "single", */
"undef": true,
"unused": "strict",
"strict": false,
"trailing": true,
"maxdepth": 2,
"maxlen": 79,
/* Relaxing options */
"asi": false,
"boss": false,
"debug": false,
"eqnull": true,
"esnext": false,
"evil": false,
"expr": false,
"funcscope": false,
"globalstrict": false,
"iterator": false,
"lastsemic": false,
"laxcomma": true,
/* Enviroments */
"node": true
}