Skip to content

Instantly share code, notes, and snippets.

@nevalsar
Created April 23, 2019 07:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nevalsar/f3aad026dceade6541b6b2a052b8e27d to your computer and use it in GitHub Desktop.
Save nevalsar/f3aad026dceade6541b6b2a052b8e27d to your computer and use it in GitHub Desktop.
eslintrc
{
"env": {
"browser": true,
"es6": true,
"jest": true
},
"extends": [
"standard",
"plugin:react/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 9,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {},
"settings": {
"react": {
"version": "detect"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment