You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think these restrictions should improve our code quality - i.e. we shouldn't panic (unless its a test). To enable, modify root Cargo.toml and add these lines, and just clippy it...
[workspace.lints.clippy]
# Restrictions
panic_in_result_fn = "warn"
todo = "warn"
+unwrap_used = "warn"
# Pedantics without being too noisy
pedantic = { level = "warn", priority = -1 }