Skip to content
This repository was archived by the owner on Mar 7, 2019. It is now read-only.

Commit 2bb65c2

Browse files
feat(rule): add require-atomic-updates (warn)
1 parent 6b2aabd commit 2bb65c2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

environments/shared/recommended.js

+8
Original file line numberDiff line numberDiff line change
@@ -598,6 +598,14 @@ module.exports = {
598598
// spread operator.
599599
'prefer-spread': 'warn',
600600

601+
// Disallow assignments that can lead to race conditions due to usage of await or yield
602+
// This rule aims to report assignments to variables or properties where all of the following
603+
// are true:
604+
// - A variable or property is reassigned to a new value which is based on its old value
605+
// - A yield or await expression interrupts the assignment after the old value is read, and
606+
// before the new value is set
607+
'require-atomic-updates': 'warn',
608+
601609
// Disallow async functions which have no await expression
602610
// Async functions which have no await expression may be the unintentional result of
603611
// refactoring.

0 commit comments

Comments
 (0)