Skip to content

Instantly share code, notes, and snippets.

@shanev
Created June 9, 2017 19:24
Show Gist options
  • Save shanev/7078e3bfea5694c899a5ca92e5012ed2 to your computer and use it in GitHub Desktop.
Save shanev/7078e3bfea5694c899a5ca92e5012ed2 to your computer and use it in GitHub Desktop.
module.exports = {
"env": {
"browser": false,
"node": true,
"es6": true,
"mocha": true,
},
"rules": {
"no-param-reassign": [2, { "props": false }],
"no-console":0,
"no-underscore-dangle": ["error", { "allow": ["_id"] }],
},
"extends": "airbnb-base",
"plugins": [
"import",
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment