Skip to content

Instantly share code, notes, and snippets.

@danielkhan
Created June 6, 2018 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielkhan/7edf40f7bc05a7fcc80952e879e99e54 to your computer and use it in GitHub Desktop.
Save danielkhan/7edf40f7bc05a7fcc80952e879e99e54 to your computer and use it in GitHub Desktop.
module.exports = {
"extends": "airbnb-base",
"rules": {
"no-unused-vars": ["error", { "argsIgnorePattern": "next" }],
"no-underscore-dangle": ["error", { "allow": ["_id"] }],
"no-param-reassign": ["error", { "props": false }],
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment