Ignore Clippy redundant_closure

This commit is contained in:
Eric Huss 2019-04-15 13:49:04 -07:00
parent ef0223f125
commit f818762b66
2 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@
#![allow(clippy::identity_op)] // used for vertical alignment
#![allow(clippy::implicit_hasher)] // large project
#![allow(clippy::large_enum_variant)] // large project
#![allow(clippy::redundant_closure)] // closures can be less verbose
#![allow(clippy::redundant_closure_call)] // closures over try catch blocks
#![allow(clippy::too_many_arguments)] // large project
#![allow(clippy::type_complexity)] // there's an exceptionally complex type

View File

@ -2,6 +2,7 @@
#![cfg_attr(feature = "deny-warnings", deny(warnings))]
#![allow(clippy::blacklisted_name)]
#![allow(clippy::explicit_iter_loop)]
#![allow(clippy::redundant_closure)]
#![warn(clippy::needless_borrow)]
#![warn(clippy::redundant_clone)]