forked from vankasteelj/opensubtitles-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
72 lines (67 loc) · 1.35 KB
/
.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
65
66
67
68
69
70
71
72
{
// Environments
"browser": true,
"node": true,
"jquery": true,
"devel": true,
// Options
"curly": true,
"bitwise": false,
"immed": true,
"latedef": true,
"nonbsp": true,
"nonew": true,
"validthis": true,
"debug": true,
"boss": true,
"eqeqeq": true,
"expr": true,
"eqnull": true,
"quotmark": "single",
"trailing": true,
"sub": true,
"trailing": true,
"undef": true,
"laxbreak": true,
"loopfunc": true,
"indent": 4,
"newcap": false,
"esversion": 6,
"-W138": true,
"-W116": true,
"asi": true,
// Globals
"globals": {
// App
"crypt": true,
"fs": true,
"gui": true,
"https": true,
"path": true,
"spawn": true,
"win": true,
// JS files
"Boot": true,
"DragDrop": true,
"Files": true,
"Interface": true,
"Keyboard": true,
"Localization": true,
"Misc": true,
"Notify": true,
"OsActions": true,
"Themes": true,
"Update": true,
// Global variables
"OS": true,
"PKJSON": true,
"USERAGENT": true,
// Modules
"detectLang": true,
"i18n": true,
"mi": true,
"got": true,
"openSubtitles": true,
"OSLANGS": true
}
}