File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -58,3 +58,7 @@ unused_must_use = "forbid"
5858# These should only be in local code
5959dbg_macro = " deny"
6060todo = " deny"
61+ # These two are in my experience the lints which are most likely
62+ # to trigger, and among the least valuable to fix.
63+ needless_borrow = " allow"
64+ needless_borrows_for_generic_args = " allow"
Original file line number Diff line number Diff line change 88#![ deny( missing_docs) ]
99#![ deny( missing_debug_implementations) ]
1010#![ cfg_attr( feature = "dox" , feature( doc_cfg) ) ]
11- // These two are in my experience the lints which are most likely
12- // to trigger, and among the least valuable to fix.
13- #![ allow( clippy:: needless_borrow) ]
14- #![ allow( clippy:: needless_borrows_for_generic_args) ]
1511
1612mod boundimage;
1713pub mod cli;
Original file line number Diff line number Diff line change 1- #![ allow( clippy:: needless_borrow) ]
2- #![ allow( clippy:: needless_borrows_for_generic_args) ]
3-
41use std:: path:: PathBuf ;
52
63use camino:: Utf8PathBuf ;
You can’t perform that action at this time.
0 commit comments