k9
k9 copied to clipboard
replace all .unwrap() and .expect() with `?`
add
#![warn(clippy::unwrap_used)]
#![warn(clippy::expect_used)]
to lib.rs
to enable linter that will show all usages of unprawe()
and expect()
Okay, this is mine. I want to claim it. :D
@jeremyscatigna have you looked into it yet?