flavor-js
Version:
FlavorJS the definitive JS natives chainable extensions methods (based on lodash & ES6)
42 lines (41 loc) • 1.08 kB
Plain Text
{
"extends": [
"eslint-config-airbnb"
],
"rules": {
"object-curly-spacing": "off",
"max-len": "off",
"arrow-body-style": "off",
"keyword-spacing": "off",
"space-before-function-paren": "off",
"linebreak-style": "off",
"no-useless-escape": "off",
"no-underscore-dangle": "off",
"no-param-reassign": "off",
"no-extra-boolean-cast": "off",
"no-restricted-properties": "off",
"no-unused-vars": "off",
"no-plusplus": "off",
"no-unused-expressions": "off",
"class-methods-use-this": "off",
"one-var": "off",
"prefer-template": "off",
"func-names": [
"error",
"never"
],
"no-console": "off",
"spaced-comment": "off",
"newline-per-chained-call": "off",
"no-trailing-spaces": "off",
"no-mixed-operators": "off",
"indent": [
"error",
2
]
},
"globals": {
"window": true,
"document": true
}
}