From 32263f5fe173335fcd655443099ca3dd16388515 Mon Sep 17 00:00:00 2001 From: Alex Macleod Date: Wed, 16 Jul 2025 12:30:52 +0000 Subject: [PATCH] Move `uninlined_format_args` to `pedantic` --- clippy_lints/src/format_args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/format_args.rs b/clippy_lints/src/format_args.rs index 138fab9c639f..312966745b0c 100644 --- a/clippy_lints/src/format_args.rs +++ b/clippy_lints/src/format_args.rs @@ -165,7 +165,7 @@ declare_clippy_lint! { /// nothing will be suggested, e.g. `println!("{0}={1}", var, 1+2)`. #[clippy::version = "1.66.0"] pub UNINLINED_FORMAT_ARGS, - style, + pedantic, "using non-inlined variables in `format!` calls" }