Skip to content

Instantly share code, notes, and snippets.

@rcook
Created May 21, 2023 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rcook/8e76ea5fa23c5faede7f555143f258dc to your computer and use it in GitHub Desktop.
Save rcook/8e76ea5fa23c5faede7f555143f258dc to your computer and use it in GitHub Desktop.
Clippy settings
#![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