File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change 10
10
#![ allow( clippy:: identity_op) ] // used for vertical alignment
11
11
#![ allow( clippy:: implicit_hasher) ] // large project
12
12
#![ allow( clippy:: large_enum_variant) ] // large project
13
+ #![ allow( clippy:: redundant_closure) ] // closures can be less verbose
13
14
#![ allow( clippy:: redundant_closure_call) ] // closures over try catch blocks
14
15
#![ allow( clippy:: too_many_arguments) ] // large project
15
16
#![ allow( clippy:: type_complexity) ] // there's an exceptionally complex type
Original file line number Diff line number Diff line change 2
2
#![ cfg_attr( feature = "deny-warnings" , deny( warnings) ) ]
3
3
#![ allow( clippy:: blacklisted_name) ]
4
4
#![ allow( clippy:: explicit_iter_loop) ]
5
+ #![ allow( clippy:: redundant_closure) ]
5
6
#![ warn( clippy:: needless_borrow) ]
6
7
#![ warn( clippy:: redundant_clone) ]
7
8
You can’t perform that action at this time.
0 commit comments