Skip to content

Instantly share code, notes, and snippets.

@mudivili
Created March 28, 2018 05:20
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 mudivili/b51e2e3aebdd40ac1a8371f00367070b to your computer and use it in GitHub Desktop.
Save mudivili/b51e2e3aebdd40ac1a8371f00367070b to your computer and use it in GitHub Desktop.
Eslint Configuration
{
"env":
{
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules":
{
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
},
"parserOptions":
{
"ecmaVersion": 2017
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment