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

fix(eslint-plugin): no-floating-promises - support chain expression #3826

Conversation

mwhitworth
Copy link

I can't see a reason why chain expressions aren't supported - await undefined is a no-op, and other than that they behave like member expressions

@typescript-eslint
Copy link
Contributor

Thanks for the PR, @mwhitworth!

typescript-eslint is a 100% community driven project, and we are incredibly grateful that you are contributing to that community.

The core maintainers work on this in their personal time, so please understand that it may not be possible for them to review your work immediately.

Thanks again!


🙏 Please, if you or your company is finding typescript-eslint valuable, help us sustain the project by sponsoring it transparently on https://opencollective.com/typescript-eslint. As a thank you, your profile/company logo will be added to our main README which receives thousands of unique visitors per day.

@bradzacher bradzacher added the bug Something isn't working label Sep 1, 2021
Comment on lines -325 to -334
await returnsPromise?.();
returnsPromise()?.then(
() => {},
() => {},
);
returnsPromise()
?.then(() => {})
?.catch(() => {});
returnsPromise()?.catch(() => {});
returnsPromise()?.finally(() => {});
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

aren't all of these valid still?
They all either are awaited, or have a catch/finally to close off the promise.

@bradzacher bradzacher added the awaiting response Issues waiting for a reply from the OP or another party label Sep 3, 2021
@mwhitworth
Copy link
Author

Fixed in #4096 instead

@mwhitworth mwhitworth closed this Nov 23, 2021
@mwhitworth mwhitworth deleted the no-floating-promises-chain-expressions branch November 23, 2021 09:18
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Dec 24, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
awaiting response Issues waiting for a reply from the OP or another party bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants