Skip to content

Instantly share code, notes, and snippets.

@flunder
Last active January 19, 2018 11:47
Show Gist options
  • Save flunder/1df32531ad7a46545047d2f2ac22c4d6 to your computer and use it in GitHub Desktop.
Save flunder/1df32531ad7a46545047d2f2ac22c4d6 to your computer and use it in GitHub Desktop.
React Project esLint Settings
{
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"indent": [
"error",
4,
{ "SwitchCase": 1 }
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment