Skip to content

Commit

Permalink
Merge pull request #237 from cgwalters/allow-needless-borrows
Browse files Browse the repository at this point in the history
lib: `#![allow(clippy::needless_borrow)]`
  • Loading branch information
cgwalters committed Dec 19, 2023
2 parents 034ba9d + 48dfc24 commit 38fc67a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
#![cfg_attr(feature = "dox", feature(doc_cfg))]
#![deny(clippy::dbg_macro)]
#![deny(clippy::todo)]
// These two are in my experience the lints which are most likely
// to trigger, and among the least valuable to fix.
#![allow(clippy::needless_borrow)]
#![allow(clippy::needless_borrows_for_generic_args)]

pub mod cli;
pub(crate) mod deploy;
Expand Down

0 comments on commit 38fc67a

Please sign in to comment.