Skip to content

Instantly share code, notes, and snippets.

@drguildo
Last active July 18, 2017 19:49
Show Gist options
  • Save drguildo/46677308aa06c00401b697f4e9d78f55 to your computer and use it in GitHub Desktop.
Save drguildo/46677308aa06c00401b697f4e9d78f55 to your computer and use it in GitHub Desktop.
My ESLint configuration
{
"extends": "eslint:recommended",
"env": {
"es6": true,
"node": true
},
"rules": {
"no-console": "off",
"prefer-const": "warn",
"no-unused-vars": "warn",
"no-var": "warn",
"semi": "error"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment