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 GitHub
commit e692cd4b30
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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