Disable the new `clippy::return_self_not_must_use` lint

This commit is contained in:
wtfsck 2022-02-24 18:30:28 +01:00
parent d5c8f6579a
commit 2982a95382
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@
#![allow(clippy::manual_range_contains)] #![allow(clippy::manual_range_contains)]
#![allow(clippy::match_ref_pats)] #![allow(clippy::match_ref_pats)]
#![allow(clippy::ptr_eq)] #![allow(clippy::ptr_eq)]
#![allow(clippy::return_self_not_must_use)]
#![allow(clippy::too_many_arguments)] #![allow(clippy::too_many_arguments)]
#![allow(clippy::type_complexity)] #![allow(clippy::type_complexity)]
#![allow(clippy::unused_unit)] // wasm-bindgen 0.2.79 https://github.com/rustwasm/wasm-bindgen/issues/2774 #![allow(clippy::unused_unit)] // wasm-bindgen 0.2.79 https://github.com/rustwasm/wasm-bindgen/issues/2774