Skip to content

Instantly share code, notes, and snippets.

@AwsafAlam
Forked from tanmoyAtb/.eslintrc-react
Created August 9, 2019 18:37
Show Gist options
  • Save AwsafAlam/a32d2f5e928130f5bd925e59beeeb1c0 to your computer and use it in GitHub Desktop.
Save AwsafAlam/a32d2f5e928130f5bd925e59beeeb1c0 to your computer and use it in GitHub Desktop.
{
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment