From 9307d325a5a8aa1b49de12cc7ef384ab58f2eb9c Mon Sep 17 00:00:00 2001 From: HampusM Date: Thu, 12 Jan 2023 21:21:18 +0100 Subject: refactor: allow manual let else in macros crate --- macros/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'macros/src/lib.rs') diff --git a/macros/src/lib.rs b/macros/src/lib.rs index be78d6d..91cc9f0 100644 --- a/macros/src/lib.rs +++ b/macros/src/lib.rs @@ -1,6 +1,7 @@ #![cfg_attr(doc_cfg, feature(doc_cfg))] #![deny(clippy::all, clippy::pedantic, missing_docs, unsafe_code)] -#![allow(clippy::module_name_repetitions)] +#![allow(unknown_lints)] +#![allow(clippy::module_name_repetitions, clippy::manual_let_else)] //! Macros for the [Syrette](https://crates.io/crates/syrette) crate. -- cgit v1.2.3-18-g5258