Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.
Closed
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions ci/test-checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ _ scripts/cargo-for-all-lock-files.sh -- "+${rust_nightly}" clippy --workspace -
--deny=clippy::integer_arithmetic \
--deny=clippy::manual_let_else \
--deny=clippy::used_underscore_binding \
--allow=clippy::items-after-test-module \
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rust-lang/rust-clippy#11153

allowing this one globally Feels Bad Man ™️, but the offending code is emitted by a proc-macro and we can't put it in the right place locally 🤕

"${nightly_clippy_allows[@]}"

# temporarily run stable clippy as well to scan the codebase for
Expand All @@ -89,6 +90,7 @@ _ scripts/cargo-for-all-lock-files.sh -- clippy --workspace --tests --bins --ex
--deny=clippy::default_trait_access \
--deny=clippy::integer_arithmetic \
--deny=clippy::manual_let_else \
--allow=clippy::items-after-test-module \
--deny=clippy::used_underscore_binding

if [[ -n $CI ]]; then
Expand Down