//disable for a file
/* eslint-disable */
"rules": {
"indent": [
2,
4
],
"no-console":"off",
"no-underscore-dangle": ["error", {
"allow": [
//for mongo object
"_doc", "user._doc", "_id"
]
}]
}