forked from SmartRSS/Smart-RSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
38 lines (38 loc) · 775 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
{
"curly": true,
"eqnull": true,
"eqeqeq": true,
"immed": true,
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"browser": true,
"devel": true,
"boss": true,
"forin": true,
"noempty": true,
"unused": true,
"trailing": true,
"supernew": true,
"onevar": false,
"funcscope": true,
"maxdepth": 5,
"quotmark": "single",
"-W030": true,
"-W117": true,
"esversion": 6,
"futurehostile": true,
"globals": {
"app": true,
"bg": true,
"tabID": true,
"chrome": false,
"define": false,
"require": false,
"requirejs": false,
"requestAnimationFrame": true,
"URL": true,
"HTMLCollection": true
}
}