We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e78b7d commit 863aa78Copy full SHA for 863aa78
docs/rules/no-await-in-loop.md
@@ -70,5 +70,6 @@ async function foo(things) {
70
71
In many cases the iterations of a loop are not actually independent of each-other. For example, the
72
output of one iteration might be used as the input to another. Or, loops may be used to retry
73
-asynchronous operations that were unsuccessful. In such cases it makes sense to use `await` within a
+asynchronous operations that were unsuccessful. Or, loops may be used to prevent your code from sending
74
+an excessive amount of requests in parallel. In such cases it makes sense to use `await` within a
75
loop and it is recommended to disable the rule via a standard ESLint disable comment.
0 commit comments