Skip to content

Commit

Permalink
Disable require-atomic-updates ESLint rule due to false positives (es…
Browse files Browse the repository at this point in the history
  • Loading branch information
palant committed Jun 12, 2020
1 parent 338972b commit 180fcb9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .eslintrc.json
Expand Up @@ -5,7 +5,7 @@
"json"
],
"parserOptions": {
"ecmaVersion": 6,
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
Expand Down Expand Up @@ -57,14 +57,18 @@
],
"prefer-rest-params": "warn",
"prefer-spread": "warn",
"require-yield": "warn",
"quotes": [
"error",
"double",
{
"avoidEscape": true
}
],
"require-yield": "warn",
"require-atomic-updates": [
"off",
"https://github.com/eslint/eslint/issues/11899"
],
"semi": "error",
"semi-spacing": "error",
"space-before-function-paren": [
Expand Down

0 comments on commit 180fcb9

Please sign in to comment.