aboutsummaryrefslogtreecommitdiff
path: root/macros/src/lib.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-01-12 21:21:18 +0100
committerHampusM <hampus@hampusmat.com>2023-01-12 21:21:18 +0100
commit9307d325a5a8aa1b49de12cc7ef384ab58f2eb9c (patch)
tree5aa940a4750005e1f6793e6ab0f91d2113a9bc9b /macros/src/lib.rs
parent3d099288f71b59d4816f88faef2342d60d52e442 (diff)
refactor: allow manual let else in macros crate
Diffstat (limited to 'macros/src/lib.rs')
-rw-r--r--macros/src/lib.rs3
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.