From df94fd098bdfe8d755a1941177fc558e89fa818b Mon Sep 17 00:00:00 2001 From: Nugine Date: Sun, 29 Dec 2024 13:46:33 +0800 Subject: [PATCH] style: temporarily allow `clippy::literal_string_with_formatting_args` --- codegen/src/main.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/codegen/src/main.rs b/codegen/src/main.rs index 8c8ca58..928e334 100644 --- a/codegen/src/main.rs +++ b/codegen/src/main.rs @@ -12,6 +12,11 @@ clippy::match_same_arms, clippy::let_underscore_untyped, )] +#![allow( + // FIXME: https://github.com/rust-lang/rust-clippy/issues/13885 + clippy::literal_string_with_formatting_args, + unknown_lints, +)] mod v1; mod v2;