Skip to content

Instantly share code, notes, and snippets.

@sidouglas
Created June 22, 2020 10:23
Show Gist options
  • Save sidouglas/b65c085af69ae6bb9aea83643489ded5 to your computer and use it in GitHub Desktop.
Save sidouglas/b65c085af69ae6bb9aea83643489ded5 to your computer and use it in GitHub Desktop.
Base eslint config file base
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"prettier",
"prettier/react"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2019,
"sourceType": "module"
},
"plugins": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment