forked from montagejs/mr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.jshintrc
49 lines (45 loc) · 979 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
44
45
46
47
48
49
{
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"noarg": true,
"noempty": true,
"nonew": true,
"newcap": false,
"undef": true,
"unused": "paramsignore",
"trailing": true,
"indent": 4,
"boss": true,
"eqnull": true,
"node": true,
"browser": true,
"globals": {
"CustomEvent": true,
"WebSocket": false,
"location": true,
"console": false,
"alert": true,
"hasOwnProperty": true,
"phantom": true,
"require": false,
"exports": false,
"module": false,
"global": false,
"__dirname": false,
"__filename": false,
"WeakMap": true,
"Map": true,
"Set": true,
"URL": true,
"describe": true,
"ddescribe": true,
"xdescribe": true,
"it": true,
"iit": true,
"xit": true,
"expect": true
}
}