| Current Path : /home/deltalab/PMS/partner-manager-backend/ |
| Current File : //home/deltalab/PMS/partner-manager-backend/.eslintrc.json |
{
"env": {
"node": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"indent": [2, 2],
"no-tabs": "off",
"linebreak-style": "off",
"no-underscore-dangle": ["error", { "allow": ["_id", "_embedded"] }],
"max-len": ["error", { "code": 150 }],
// "prefer-arrow-callback": ["error", { "allowNamedFunctions": true }],
"no-plusplus": 0,
// "no-multi-spaces": ["error", { "exceptions": { "VariableDeclarator": true } }],
// "quotes": 0,
// "vars-on-top": 0,
// "dot-notation": "off",
// "object-shorthand": "off",
// "comma-dangle": ["error", "never"],
// "max-classes-per-file": "off",
"no-console": "off"
}
}