Skip to content

Commit e692cd4

Browse files
authoredJan 19, 2025
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`
2 parents 2220806 + fbf6631 commit e692cd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎clippy_lints/src/literal_string_with_formatting_args.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ declare_clippy_lint! {
3131
/// ```
3232
#[clippy::version = "1.85.0"]
3333
pub LITERAL_STRING_WITH_FORMATTING_ARGS,
34-
suspicious,
34+
nursery,
3535
"Checks if string literals have formatting arguments"
3636
}
3737

0 commit comments

Comments
 (0)
Please sign in to comment.