From a006db8381391b8d43ea90bec89552b7cb1cc8a0 Mon Sep 17 00:00:00 2001 From: Ian Date: Sat, 23 May 2026 15:54:21 -0400 Subject: [PATCH] Add `#[clippy::format_args]` to `eco_format` macro --- src/string.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/string.rs b/src/string.rs index 91b6a58..fd0abbb 100644 --- a/src/string.rs +++ b/src/string.rs @@ -23,6 +23,7 @@ use crate::dynamic::{DynamicVec, InlineVec}; /// assert_eq!(eco_format!("Hello, {}!", 123), "Hello, 123!"); /// ``` #[macro_export] +#[clippy::format_args] macro_rules! eco_format { ($($tts:tt)*) => {{ use ::std::fmt::Write;