Skip to content

Instantly share code, notes, and snippets.

@amirelemam
Created June 10, 2019 22:57
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 amirelemam/edb172320c306e4712935908dfd7ecb5 to your computer and use it in GitHub Desktop.
Save amirelemam/edb172320c306e4712935908dfd7ecb5 to your computer and use it in GitHub Desktop.
ESlint config for ES6
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"no-undef": 2
},
"env": {
"node": true,
"es6": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment