Mark uninlined_format_args as pedantic

This commit is contained in:
Manish Goregaokar 2023-01-30 19:28:27 -08:00 committed by Josh Stone
parent 3fe64ebbce
commit 32f4890544

View file

@ -124,7 +124,7 @@ declare_clippy_lint! {
/// nothing will be suggested, e.g. `println!("{0}={1}", var, 1+2)`.
#[clippy::version = "1.65.0"]
pub UNINLINED_FORMAT_ARGS,
style,
pedantic,
"using non-inlined variables in `format!` calls"
}