Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Rule to require that Promise executor function calls resolve #438

Open
jroru opened this issue Apr 22, 2023 · 0 comments
Open

Rule to require that Promise executor function calls resolve #438

jroru opened this issue Apr 22, 2023 · 0 comments

Comments

@jroru
Copy link

jroru commented Apr 22, 2023

Description

A rule could be created for the Promise constructor executor function to require that the resolve callback is called.

Example of incorrect code for this rule:

await new Promise(() => {
  setTimeout(() => {}, 2000);
});

Example of correct code for this rule:

await new Promise((resolve) => {
  setTimeout(resolve, 2000);
});
# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

No branches or pull requests

2 participants