opentok-layout-js
Version:
Automatic layout of video elements (publisher and subscriber) minimising white-space for the OpenTok on WebRTC API. This is intended for use with the OpenTok on WebRTC JS API.
23 lines (22 loc) • 542 B
JavaScript
module.exports = {
"extends": "airbnb-base",
"rules": {
"no-console": 0,
"no-param-reassign": 0, // In angular you do a lot of scope.something = something
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "ignore",
"exports": "ignore",
"functions": "ignore"
}],
"prefer-destructuring": 0, // It doesn't work with IE11 without babel-polyfill
},
"env": {
"browser": true,
"node": true,
},
"globals": {
"$": true,
}
};