diff options
author | HampusM <hampus@hampusmat.com> | 2023-01-12 21:21:18 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-01-12 21:21:18 +0100 |
commit | 9307d325a5a8aa1b49de12cc7ef384ab58f2eb9c (patch) | |
tree | 5aa940a4750005e1f6793e6ab0f91d2113a9bc9b | |
parent | 3d099288f71b59d4816f88faef2342d60d52e442 (diff) |
refactor: allow manual let else in macros crate
-rw-r--r-- | macros/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
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. |