From 668df8d2efea1408eab0509114559187fd0b1503 Mon Sep 17 00:00:00 2001 From: atjn Date: Thu, 3 Jun 2021 18:12:08 +0200 Subject: [PATCH] Disable require-atomic-updates It was waay too buggy: https://github.com/eslint/eslint/issues/11899 --- .eslintrc.js | 2 +- CHANGELOG.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 01ab30f..4f89466 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -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"], diff --git a/CHANGELOG.md b/CHANGELOG.md index 644667a..1acdd86 100644 --- a/CHANGELOG.md +++ b/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.