1
0
mirror of https://github.com/videojs/video.js.git synced 2025-02-08 12:05:47 +02:00
video.js/.jshintrc

24 lines
564 B
Plaintext
Raw Normal View History

{
// Hopefully people are smart enough not to use eval
// But goog.base uses execScript so it throws an error.
// When compiled goog.base is stripped out completely.
"evil" : true,
"validthis": true,
"browser" : true,
"debug" : true,
"boss" : true,
"expr" : true,
"eqnull" : true,
"quotmark" : "single",
"sub" : true,
"trailing" : true,
"undef" : true,
"laxbreak" : true,
"predef" : [ // Extra globals.
"_V_",
"videojs",
"vjs",
"goog"
]
}