mirror of
https://github.com/chatmail/core.git
synced 2026-05-08 09:26: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::wildcard_imports,
|
||||||
clippy::needless_borrow
|
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]
|
#[macro_use]
|
||||||
extern crate num_derive;
|
extern crate num_derive;
|
||||||
|
|||||||
Reference in New Issue
Block a user