-
Notifications
You must be signed in to change notification settings - Fork 294
Expand file tree
/
Copy path.jshintrc
More file actions
38 lines (36 loc) · 718 Bytes
/
Copy path.jshintrc
File metadata and controls
38 lines (36 loc) · 718 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
{
"boss": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"es5": false,
"forin": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"node": true,
"noempty": true,
"plusplus": true,
"quotmark": "single",
"smarttabs": false,
"scripturl": true,
"strict": false,
"sub": true,
"trailing": true,
"undef": true,
"unused": true,
"globals": {
"window": true,
"document": true,
"alertify": true,
"define": true,
"triggerEvent": true,
"suite": true,
"test": true,
"assert": true,
"setup": true,
"teardown": true
}
}