Skip to content

Commit 0dd3f0c

Browse files
committed
fix: Turn off 'require-atomic-updates' due to false positives
More info: eslint/eslint#11899
1 parent 249c471 commit 0dd3f0c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

index.js

+1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ module.exports = {
9999
'prefer-spread': 'error',
100100
'prefer-template': 'error',
101101
'radix': 'error',
102+
'require-atomic-updates': 'off', // Reports false positives: https://github.com/eslint/eslint/issues/11899
102103
'vars-on-top': 'error',
103104
'spaced-comment': ['error', 'always', { exceptions: ['-', '+'], markers: ['=', '!'] }],
104105
'strict': ['error', 'safe'],

0 commit comments

Comments
 (0)