Hacker News new | ask | show | jobs
by Hamuko 391 days ago
I use expect() so that I can grep for instances of "unwrap()" after the prototyping phase without getting tests.
1 comments

You can add

    [lints.clippy]
    unwrap_used = "deny"
to Cargo.toml if you want to avoid unwrap and then explicitly opt-in with #[allow(clippy::unwrap_used)]