forked from video-dev/hls.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jshintrc
38 lines (38 loc) · 897 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
{
"bitwise" : false,
"browser" : true,
"camelcase" : true,
"curly" : true,
"eqeqeq" : true,
"eqnull" : true,
"es5" : false,
"esnext" : true,
"immed" : true,
"indent" : 4,
"latedef" : true,
"newcap" : true,
"noarg" : true,
"node" : true,
"quotmark" : "single",
"regexp" : true,
"smarttabs" : true,
"strict" : false,
"trailing" : true,
"undef" : true,
"unused" : true,
"white" : true,
"globals" : {
"console" : true,
"MediaSource" : true,
"performance" : true,
"crypto" : true,
"fetch" : true,
"Request" : true,
"Headers" : true,
"escape" : true,
"__VERSION__" : true,
"__USE_SUBTITLES__" : true,
"__USE_ALT_AUDIO__" : true,
"__USE_EME_DRM__" : true
}
}