driver.js / .eslintrc.json
kamrify's picture
Allow displaying buttons on single highlight elements
df9f42f
raw
history blame
419 Bytes
{
"extends": "airbnb-base",
"env": {
"browser": true
},
"rules": {
"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"
}
}