Skip to content

Commit

Permalink
Disable require-atomic-updates
Browse files Browse the repository at this point in the history
It is very broken, per eslint/eslint#11899.
  • Loading branch information
domenic committed Mar 30, 2021
1 parent e5362c6 commit e4fd798
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -56,7 +56,7 @@ module.exports = {
"no-unsafe-negation": "error",
"no-unsafe-optional-chaining": ["error", { disallowArithmeticOperators: true }],
"no-useless-backreference": "error",
"require-atomic-updates": "error",
"require-atomic-updates": "off", // this is very broken: https://github.com/eslint/eslint/issues/11899
"use-isnan": ["error", { enforceForIndexOf: true }],
"valid-typeof": "error",

Expand Down

0 comments on commit e4fd798

Please sign in to comment.