QUAL001warningFree tier

exception-swallowing

Silently swallowed exceptions hide bugs and make debugging hard

Applies to: C#, Go, JavaScript, Python, Ruby, Rust, TypeScript

Why this matters

When you catch an exception and do nothing with it, you're hiding potential bugs. The code might be failing silently, and you won't know until something goes seriously wrong. At minimum, log the error so you can debug issues.

Catch it before it ships

pip install stablestack # or: npx stablestackstablestack # scans your project, QUAL001 includedstablestack explain QUAL001

False positive in your codebase? Suppress a single line with # noqa: QUAL001