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:
parent
461de7492e
commit
acc7e1c8ea
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue