Skip to content

Instantly share code, notes, and snippets.

@afaquejam
Last active August 12, 2020 19:28
Show Gist options
  • Save afaquejam/26a89e9e48199d816623675320db442a to your computer and use it in GitHub Desktop.
Save afaquejam/26a89e9e48199d816623675320db442a to your computer and use it in GitHub Desktop.
eslint config for node
New info: have a look into this: https://travishorn.com/setting-up-eslint-on-vs-code-with-airbnb-javascript-style-guide-6eb78a535ba6
// npm install eslint --save-dev
// eslint --init
// Update the .eslintrc.json
{
"extends": "google",
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 8
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment