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
Hello,
It would be great if promises in this form triggered a warning:
function foo() { return bar() .then(...) .catch((err) => { console.error(err); }); }
Rather than trying to prevent the user from swallowing errors entirely, the goal is to ensure errors are only swallowed intentionally:
function foo() { return bar() .then(...) .catch((err) => { // eslint-disable-line promise/no-swallow-error-in-returned-promise console.error(err); }); }
Thanks for considering!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
It would be great if promises in this form triggered a warning:
Rather than trying to prevent the user from swallowing errors entirely, the goal is to ensure errors are only swallowed intentionally:
Thanks for considering!
The text was updated successfully, but these errors were encountered: