Skip to content

Commit 7bf3c0b

Browse files
committed
Allow new default clippy lint uninlined-format-args
`clippy` recently added a new lint that encourages the use of variables directly in format strings rather than as positional arguments. While its not the most critical thing, its right, but fixing it everywhere is a few hundred changes and not entirely worth it right now. Instead, we simply allow the new default lint and hope to get to it at some point.
1 parent bb2ef53 commit 7bf3c0b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/check-lint.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ CLIPPY() {
105105
-A clippy::useless_conversion \
106106
-A clippy::unnecessary_map_or `# to be removed once we hit MSRV 1.70` \
107107
-A clippy::manual_repeat_n `# to be removed once we hit MSRV 1.86` \
108-
-A clippy::io_other_error `# to be removed once we hit MSRV 1.74`
108+
-A clippy::io_other_error `# to be removed once we hit MSRV 1.74` \
109+
-A clippy::uninlined-format-args
109110
}
110111

111112
CLIPPY

0 commit comments

Comments
 (0)