5 ms·
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)
by theodorton 1y ago
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)]