forked from jnaie/JigMagga
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jshintrc
More file actions
67 lines (58 loc) · 945 Bytes
/
.jshintrc
File metadata and controls
67 lines (58 loc) · 945 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
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
65
66
67
{
"predef" : [
// Bitovi Tools
"steal",
"can",
// QUnit API
// http://docs.jquery.com/QUnit#API_documentation
"QUnit",
"test",
"asyncTest",
"expect",
"module",
"ok",
"equal",
"notEqual",
"deepEqual",
"notDeepEqual",
"strictEqual",
"notStrictEqual",
"raises",
"start",
"stop",
// Facebook global
"FB",
// YD project global
"Yd",
"Gettext",
"_",
"_n",
"alert",
"confirm",
// Node.js and CommonJS keywords
"define",
"require",
"__dirname"
],
"bitwise":true,
"forin":true,
"newcap":true,
"noempty":true,
"nonew":true,
"unused":true,
"strict":true,
"jquery":true,
"node":true,
"worker":true,
"browser": true,
"curly": true,
"eqnull": true,
"eqeqeq": true,
"expr": true,
"latedef": true,
"noarg": true,
"smarttabs": true,
"undef": true,
"boss": true,
"evil": true
}