Skip to content

Instantly share code, notes, and snippets.

@annguyenwasd
Last active April 26, 2020 12:52
Show Gist options
  • Save annguyenwasd/55d95e1cd405b78e8a29ee4bd2ea003f to your computer and use it in GitHub Desktop.
Save annguyenwasd/55d95e1cd405b78e8a29ee4bd2ea003f to your computer and use it in GitHub Desktop.
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["react", "prettier"],
"rules": {
"react/function-component-definition": [
2,
{ "namedComponents": "arrow-function" }
],
"no-var": "error",
"prefer-const": "error"
},
"settings": {
"react": {
"version": "detect"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment