We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E. g. in opcard we use this configuration:
#![warn( missing_copy_implementations, missing_debug_implementations, missing_docs, non_ascii_idents, trivial_casts, unused, unused_qualifications, clippy::expect_used, clippy::unwrap_used )] #![deny(unsafe_code)]
https://github.com/Nitrokey/opcard-rs/blob/main/src/lib.rs#L31-L42
Exceptions that require e. g. unwrap can be whitelisted explicitly:
unwrap
#[allow(clippy::unwrap_used)] some_function().unwrap(); // always ok because of ...
The text was updated successfully, but these errors were encountered:
Fixed in #75
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
E. g. in opcard we use this configuration:
https://github.com/Nitrokey/opcard-rs/blob/main/src/lib.rs#L31-L42
Exceptions that require e. g.
unwrap
can be whitelisted explicitly:The text was updated successfully, but these errors were encountered: