-
Notifications
You must be signed in to change notification settings - Fork 3
/
.jshintrc
64 lines (59 loc) · 1000 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"bitwise": true
, "curly": true
, "es3": true
, "immed": true
, "latedef": true
, "maxcomplexity": 15
, "maxdepth": 3
, "maxerr": 1000000
, "newcap": true
, "noarg": true
, "noempty": true
, "unused": true
, "strict": true
, "trailing": true
, "quotmark": "single"
, "laxbreak": true
, "laxcomma": true
, "loopfunc": true
, "smarttabs": true
, "validthis": true
, "node": true
, "browser": true
, "jquery": true
, "predef": [
"define"
, "Backbone"
, "_"
, "getUrl"
, "buster"
, "afterEach"
, "beforeEach"
, "describe"
, "expect"
, "it"
, "jasmine"
, "runs"
, "spyOn"
, "waits"
, "waitsFor"
, "xdescribe"
, "xit"
, "appendLoadFixtures"
, "appendLoadStyleFixtures"
, "appendSetFixtures"
, "appendSetStyleFixtures"
, "clearCache"
, "cleanUp"
, "getJSONFixture"
, "loadFixtures"
, "loadJSONFixtures"
, "loadStyleFixtures"
, "readFixtures:"
, "sandbox"
, "setFixtures"
, "setStyleFixtures"
, "sinon"
]
}