Skip to content

Instantly share code, notes, and snippets.

@chodorowicz
Created July 15, 2016 22:34
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 chodorowicz/3b373533cddba8eee5da2b0c952851c9 to your computer and use it in GitHub Desktop.
Save chodorowicz/3b373533cddba8eee5da2b0c952851c9 to your computer and use it in GitHub Desktop.
eslint
// using airbnb-base
// need to change sourceType to script
{
"extends": "airbnb-base",
"env": {
"node": true
},
parserOptions: {
ecmaVersion: 7,
sourceType: "script"
},
}
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"semi": 2
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment