Created
June 9, 2017 19:24
-
-
Save shanev/7078e3bfea5694c899a5ca92e5012ed2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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