File tree 3 files changed +4
-7
lines changed
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"
58
58
# These should only be in local code
59
59
dbg_macro = " deny"
60
60
todo = " 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 8
8
#![ deny( missing_docs) ]
9
9
#![ deny( missing_debug_implementations) ]
10
10
#![ 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) ]
15
11
16
12
mod boundimage;
17
13
pub 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
-
4
1
use std:: path:: PathBuf ;
5
2
6
3
use camino:: Utf8PathBuf ;
You can’t perform that action at this time.
0 commit comments