driver.js / .eslintrc.json
kamrify's picture
Refactor and IE compatibility
2e076cb
raw
history blame
444 Bytes
{
"extends": "airbnb-base",
"env": {
"browser": true
},
"rules": {
"no-console": "off",
"no-underscore-dangle": "off",
"no-plusplus": "off",
"no-cond-assign": "off",
"func-names": "off",
"no-continue": "off",
"no-bitwise": "off",
"class-methods-use-this": "off",
"prefer-destructuring": "off",
"no-param-reassign": [
"off"
],
"max-len": "off",
"no-multi-spaces": "off"
}
}