Hacker News new | ask | show | jobs
by mcflubbins 403 days ago
I with there was a clippy check for unwrap(), I have very very rarely needed it in practice.
1 comments

You can add this to your clippy.toml

    [lints.clippy]
    unwrap_used = "warn"
Nice! Thanks