Skip to content

Instantly share code, notes, and snippets.

@allanbian1017
Last active January 12, 2018 03:54
Show Gist options
  • Save allanbian1017/b26268eb920226d6591951d75f9966b0 to your computer and use it in GitHub Desktop.
Save allanbian1017/b26268eb920226d6591951d75f9966b0 to your computer and use it in GitHub Desktop.
ESLint config template
{
"extends": "google",
"rules": {
"semi": "error",
"linebreak-style": "off",
"no-unused-vars": ["error", {"varsIgnorePattern": "should"}],
"no-undef": "error",
"no-var": "error",
"prefer-arrow-callback": "error"
},
"env": {
"node": true,
"es6": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment