forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jshintrc
More file actions
31 lines (31 loc) · 510 Bytes
/
.jshintrc
File metadata and controls
31 lines (31 loc) · 510 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
{
"esversion": 9,
"boss": true,
"curly": true,
"eqnull": true,
"evil": true,
"futurehostile": true,
"globals": {
"after": true,
"afterEach": true,
"before": true,
"beforeEach": true,
"define": true,
"describe": true,
"global": true,
"it": true
},
"immed": false,
"maxlen": 120,
"node": true,
"predef": [
"Promise",
"Set"
],
"proto": true,
"quotmark": "double",
"trailing": true,
"undef": true,
"unused": "vars",
"validthis": true
}