We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
no-single-promise-in-promise-methods
Disallow using Promise method with a single element array as parameter.
Promise
Promise.all([promise]); Promise.any([promise]); Promise.race([promise]);
Promise.all([promise, anotherPromise]); Promise.all(notArrayLiteral); Promise.all([...promises]); Promise.any([promise, anotherPromise]); Promise.race([promise, anotherPromise]); Promise.allSettled([promise]);
No response
The text was updated successfully, but these errors were encountered:
This should be more general and also apply to Promise.allSettled and Promise.race.
Promise.allSettled
Promise.race
So please propose a more general name too.
Sorry, something went wrong.
no-await-in-promise-methods
no-single-promise-in-promise-all
It's edited, thanks for the suggestion.
Successfully merging a pull request may close this issue.
Description
Disallow using
Promise
method with a single element array as parameter.Fail
Pass
Additional Info
No response
The text was updated successfully, but these errors were encountered: