mirror of
https://github.com/chatmail/core.git
synced 2026-04-29 03:16:29 +03:00
Allow clippy::bool_assert_comparison
assert_eq!(var, false) is easier to read than assert!(!var).
This commit is contained in:
@@ -7,7 +7,11 @@
|
||||
clippy::wildcard_imports,
|
||||
clippy::needless_borrow
|
||||
)]
|
||||
#![allow(clippy::match_bool, clippy::eval_order_dependence)]
|
||||
#![allow(
|
||||
clippy::match_bool,
|
||||
clippy::eval_order_dependence,
|
||||
clippy::bool_assert_comparison
|
||||
)]
|
||||
|
||||
#[macro_use]
|
||||
extern crate num_derive;
|
||||
|
||||
Reference in New Issue
Block a user