Skip to content

Commit 30fe8cb

Browse files
christollidayfacebook-github-bot
authored andcommitted
Allow clippy::uninlined_format_args
Summary: This lint is failing buck2-oss jobs on revisions that used to pass, I can repro it with codesync but not directly in the repo, despite the fact that codesync does not modify any relevant code. It's unclear to me how a lint could be flaky, presumably it's not the lint itself, but in any case this doesn't seem useful and it's disabled elsewhere in the repo. Reviewed By: Will-MingLun-Li Differential Revision: D80303763 fbshipit-source-id: 23f8b83422bacd8efca2953839ab827c5114ae4e
1 parent 0808499 commit 30fe8cb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lint_levels.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ CLIPPY_ALLOW = [
4646
"clippy::too_long_first_doc_paragraph", # FIXME new in Rust 1.82.0
4747
"clippy::too_many_arguments", # This is an arbitrary limit set on number of arguments and not always useful
4848
"clippy::type_complexity", # This is an arbitrary limit set on number of type parameterizations and not always useful
49+
"clippy::uninlined_format_args", # Flaky?
4950
"clippy::unnecessary_wraps", # Sometimes unnecessary wraps provide the right API
5051
"clippy::unwrap_or_default", # Defaults aren't always more clear as it removes the type information when reading code
5152
"clippy::useless_conversion", # Removed all obvious but there are some reports I'm unclear how to fix

0 commit comments

Comments
 (0)