forked from walmartlabs/backbone-historytracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
48 lines (48 loc) · 784 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
/*dotfiles browser, backbone, qunit*/
{
"node": false,
"es5": false,
"esnext": false,
"browser": true,
"bitwise": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"immed": false,
"latedef": false,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": false,
"plusplus": false,
"regexp": false,
"undef": true,
"unused": false,
"strict": false,
"trailing": true,
"maxparams": 4,
"asi": false,
"boss": false,
"expr": true,
"laxbreak": true,
"loopfunc": true,
"shadow": true,
"nonstandard": true,
"onevar": false,
"predef": [
"$",
"_",
"Backbone",
"Handlebars",
"QUnit",
"test",
"asyncTest",
"start",
"ok",
"equal",
"equals",
"notEqual",
"deepEqual",
"expect"
]
}