Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ci/check-lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ CLIPPY() {
`# Things where clippy is just wrong` \
-A clippy::unwrap-or-default \
-A clippy::upper_case_acronyms \
-A clippy::swap-with-temporary \
`# Things where we do odd stuff on purpose ` \
-A clippy::unusual_byte_groupings \
-A clippy::unit_arg \
Expand Down Expand Up @@ -105,7 +106,8 @@ CLIPPY() {
-A clippy::useless_conversion \
-A clippy::unnecessary_map_or `# to be removed once we hit MSRV 1.70` \
-A clippy::manual_repeat_n `# to be removed once we hit MSRV 1.86` \
-A clippy::io_other_error `# to be removed once we hit MSRV 1.74`
-A clippy::io_other_error `# to be removed once we hit MSRV 1.74` \
-A clippy::uninlined-format-args
}

CLIPPY
Expand Down