soundmanager2
Version:
A JavaScript Sound API supporting MP3, MPEG4 and HTML5 audio + RTMP, providing reliable cross-browser/platform audio control in as little as 12 KB.
41 lines (40 loc) • 1.13 kB
JavaScript
module.exports = {
"extends": "airbnb-base",
"plugins": [
"import"
],
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "script",
},
"rules": {
"strict": "off",
"max-len": "off",
"spaced-comment": "off",
"linebreak-style": "off",
"no-underscore-dangle": "off",
"padded-blocks": "off",
"prefer-template": "off",
"comma-dangle": "off",
"no-plusplus": "off",
"no-var": "off",
"one-var": "off",
"one-var-declaration-per-line": "off",
"no-param-reassign": "off",
"no-restricted-syntax": "off",
"no-nested-ternary": "off",
"vars-on-top": "off",
"camelcase": "off",
"indent": "off",
"no-console": "off",
"no-prototype-builtins": "off",
"space-before-function-paren": "off",
"prefer-rest-params": "off",
"func-names": "off",
"no-multi-assign": "off",
"keyword-spacing": "off",
"prefer-arrow-callback": "off",
"prefer-spread": "off",
"object-shorthand": "off",
}
};