-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.jshintrc
50 lines (50 loc) · 896 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
50
{
"boss": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"expr": true,
"immed": true,
"latedef": true,
"noarg": true,
"smarttabs": true,
"sub": true,
"multistr": true,
"newcap": true,
"trailing": true,
"undef": true,
"unused": true,
"laxbreak": false,
"evil": true,
"indent": 2,
"quotmark": "single",
"node": true,
"browser": true,
"es3": true,
"globals": {
"define": true,
"describe": true,
"it": true,
"before": true,
"beforeEach": true,
"after": true,
"afterEach": true,
"spyOn": true,
"sinon": true,
"test": true,
"equal": true,
"deepEqual": true,
"notEqual": true,
"ok": true,
"asyncTest": true,
"start": true,
"expect": true,
"locator": true,
"module": true,
"throws": true,
"Promise": true,
"fetch": true,
"JSON": true,
"jasmine": true
}
}