Skip to content

Instantly share code, notes, and snippets.

@ericpkatz
Created January 4, 2019 22:05
Show Gist options
  • Save ericpkatz/29e0149bf042f108c58a2fe8b50fa218 to your computer and use it in GitHub Desktop.
Save ericpkatz/29e0149bf042f108c58a2fe8b50fa218 to your computer and use it in GitHub Desktop.
.eslintrc
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"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