Created
May 21, 2023 19:54
-
-
Save rcook/8e76ea5fa23c5faede7f555143f258dc to your computer and use it in GitHub Desktop.
Clippy settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![warn(clippy::all)] | |
#![warn(clippy::cargo)] | |
//#![warn(clippy::expect_used)] | |
#![warn(clippy::nursery)] | |
//#![warn(clippy::panic_in_result_fn)] | |
#![warn(clippy::pedantic)] | |
#![allow(clippy::derive_partial_eq_without_eq)] | |
#![allow(clippy::enum_glob_use)] | |
#![allow(clippy::match_wildcard_for_single_variants)] | |
#![allow(clippy::missing_errors_doc)] | |
#![allow(clippy::module_name_repetitions)] | |
#![allow(clippy::multiple_crate_versions)] | |
#![allow(clippy::option_if_let_else)] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment