.eslintrc.json
{
"extends": ["eslint-config-airbnb-base"],
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"class-methods-use-this": 0,
"import/extensions": 0,
"prefer-destructuring": 0,
"lines-between-class-members": 0,
"max-len": 0,
"no-control-regex": 0,
"no-param-reassign": ["error", { "ignorePropertyModificationsFor": ["session"] }],
"no-plusplus": 0,
"no-prototype-builtins": 0,
"no-underscore-dangle": 0,
"no-unused-vars": ["error", { "varsIgnorePattern": "^debug|describe|it|xdescribe|xit|odescribe|oit|before|beforeEach|after|afterEach|eq|deq|throws$", "argsIgnorePattern": "^_\\w+" }],
"no-use-before-define": 0,
"object-curly-newline": 0,
"padded-blocks": 0
}
}