Skip to content

Commit

Permalink
Permit another pedantic clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lopopolo committed Sep 8, 2024
1 parent 6af12b7 commit 3dd9714
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
#![allow(clippy::let_underscore_untyped)]
#![allow(clippy::manual_let_else)]
#![allow(clippy::missing_panics_doc)]
#![allow(clippy::option_if_let_else)]
#![allow(clippy::needless_pass_by_ref_mut)]
#![allow(clippy::option_if_let_else)]
#![allow(clippy::ref_as_ptr)]
#![allow(clippy::too_long_first_doc_paragraph)]
#![allow(unknown_lints)]
#![warn(missing_copy_implementations)]
#![warn(missing_debug_implementations)]
Expand Down

0 comments on commit 3dd9714

Please sign in to comment.