{
"extends": "airbnb-base",
"env": {
"node": true,
"es6": true
},
"root": true,
"rules": {
"object-curly-spacing": [
2,
"always"
],
"comma-dangle": [
"never"
"no-param-reassign": "off",
"no-plusplus": "off",
"no-bitwise": "off",
"no-continue": "off",
"no-unused-expressions": "off",
"no-console": "off",
"arrow-parens": [
"as-needed"
"require-jsdoc": "off",
"no-underscore-dangle": "off",
"no-invalid-this": "off",
"no-mixed-operators": "off",
"newline-per-chained-call": "off",
"class-methods-use-this": "off",
"max-len": [
1,
150
"linebreak-style": [
"unix"
"indent": [
"SwitchCase": 1,
"MemberExpression": 0
}
]