Skip to content

Instantly share code, notes, and snippets.

@c33k
Created August 10, 2018 07:57
Show Gist options
  • Save c33k/5dbb5bd59f5aae700965002a9a916edb to your computer and use it in GitHub Desktop.
Save c33k/5dbb5bd59f5aae700965002a9a916edb to your computer and use it in GitHub Desktop.
ESLINT FOR REACT
{
"extends": [
"airbnb",
"prettier",
"prettier/react"
],
"plugins": [
"prettier"
],
"parserOptions": {
"ecmaVersion": "2016",
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true,
"node": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment