Skip to content

Instantly share code, notes, and snippets.

@birdinforest
Created February 23, 2018 06:45
Show Gist options
  • Save birdinforest/67d4ed5db5998f4519a47dee82cc514b to your computer and use it in GitHub Desktop.
Save birdinforest/67d4ed5db5998f4519a47dee82cc514b to your computer and use it in GitHub Desktop.
ESLint json for React, ES6, JSX.
{
"env": {
"browser": true,
"es6": true
},
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment