no-silent-promise-catch
Disallow .catch() and second-argument .then() handlers that silently swallow a rejection; log, rethrow, or handle the error.
Why
A swallowed rejection hides failures and gives callers an indistinguishable fallback value.
Fix
Log, rethrow, or explicitly recover from the rejection; explain intentional teardown suppression.
Examples
load().catch(() => null);load().catch((error) => logger.error({ error }, "load failed"));