change literal_string_with_formatting_args lint category to nursery (#14014)

This PR changes literal_string_with_formatting_args category from
`suspicious` to `nursery` since there are thousands of false positive on
GitHub.

Closes #13989 since it's no longer problematic with such false positive
with ~~`pedantic`~~ `nursery` category.

changelog: [`literal_string_with_formatting_args` ] change category to
`nursery` from `suspicious`
This commit is contained in:
Alex Macleod 2025-01-19 11:58:32 +00:00 committed by Josh Stone
parent 461de7492e
commit acc7e1c8ea

View file

@ -31,7 +31,7 @@ declare_clippy_lint! {
/// ```
#[clippy::version = "1.83.0"]
pub LITERAL_STRING_WITH_FORMATTING_ARGS,
suspicious,
nursery,
"Checks if string literals have formatting arguments"
}