-
Notifications
You must be signed in to change notification settings - Fork 10
/
.jshintrc
78 lines (78 loc) · 1.67 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
73
74
75
76
77
78
{
"node": true,
"browser": true,
"es5": false,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": false, /* . (dot) is ok to use in regular expression */
"undef": true,
"unused": false, /* This is needed for the 'class' definition. use 'export: HomeView' when jshint is updated */
"strict": false,
"trailing": true,
"smarttabs": true,
"predef": [
"jsSHA",
"Base64",
"TranscoderHLS",
"TranscoderGeneric",
"plexAPI",
"logger",
"platform",
"Time",
"DOM",
"HorizontalFixedScrollMenu",
"VerticalFixedScrollMenu",
"SimpleListMenu",
"BackgroundLoader",
"ContextMenuView",
"ResumeView",
"PlayerView",
"HomeView",
"SettingsView",
"PreferencesView",
"ListView",
"Settings",
"UUID",
"Logger",
"MediaContainer",
"Video",
"Directory",
"Server",
"Servers",
"VK_UP",
"VK_DOWN",
"VK_LEFT",
"VK_RIGHT",
"VK_ENTER",
"VK_BACK",
"VK_PLAY",
"VK_PAUSE",
"VK_PAUSE",
"VK_STOP",
"VK_FAST_FWD",
"VK_REWIND",
"VK_PAGE_UP",
"VK_PAGE_DOWN",
"VK_RED",
"VK_GREEN",
"VK_BLUE",
"VK_YELLOW",
"unescape",
"escape",
"describe",
"it",
"expect",
"beforeEach",
"before",
"after"
]
}