Skip to content

Instantly share code, notes, and snippets.

@euoia
Created November 13, 2015 11:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save euoia/53859b9d664c282978c9 to your computer and use it in GitHub Desktop.
Save euoia/53859b9d664c282978c9 to your computer and use it in GitHub Desktop.
Basic ES6 .eslintrc for Node.js
{
"rules": {
"no-console": 0,
"indent": 2,
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
]
},
"env": {
"es6": true,
"node": true
},
"ecmaFeatures": {
"modules": true,
"experimentalObjectRestSpread": true
},
"extends": "eslint:recommended"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment