Skip to content
New issue

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

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);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant