Skip to content

Instantly share code, notes, and snippets.

@chrishan17
Created June 9, 2018 08:45
Show Gist options
  • Save chrishan17/8d5306890c62fc4eeafbb16f0a21c1d7 to your computer and use it in GitHub Desktop.
Save chrishan17/8d5306890c62fc4eeafbb16f0a21c1d7 to your computer and use it in GitHub Desktop.
eslint config
{
"extends": ["airbnb"],
"parser": "babel-eslint",
"rules": {
"semi": [2, "never"],
"no-unused-vars": [
1,
{
"argsIgnorePattern": "res|next|^err"
}
],
"no-console": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment