Skip to content

Commit

Permalink
Disable require-atomic-updates
Browse files Browse the repository at this point in the history
It was waay too buggy: eslint/eslint#11899
  • Loading branch information
atjn committed Jun 3, 2021
1 parent 377f947 commit 668df8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Expand Up @@ -47,7 +47,7 @@ module.exports = {
"no-unreachable-loop": "error",
"no-unsafe-optional-chaining": ["error", {"disallowArithmeticOperators": true}],
"no-useless-backreference": "error",
"require-atomic-updates": "error",
"require-atomic-updates": "off", //disabled until bug is resolved: https://github.com/eslint/eslint/issues/11899

//Best Practices
"curly": ["error", "multi-line"],
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,6 @@
## Unreleased
`removed` No longer checks for atomic updates because the check was too buggy.

## 3.1.0
`fixed` All JSDoc issues are now categorized as warnings, making it easier to distinguish between documentation and code issues.

Expand Down

0 comments on commit 668df8d

Please sign in to comment.