Skip to content

Commit

Permalink
chore(clippy): remove exclusions for false positive rules
Browse files Browse the repository at this point in the history
  • Loading branch information
ujinho committed Feb 19, 2025
1 parent d70f919 commit 923a1c3
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,7 @@ fmt-check:
done; \
exit $$fail

DISABLED_LINTS =
DISABLED_LINTS += -A clippy::items-after-test-module # https://github.com/rust-lang/rust-clippy/issues/11153
DISABLED_LINTS += -A clippy::arc-with-non-send-sync # https://github.com/proptest-rs/proptest/issues/364

.PHONY: clippy
clippy:
@packages=`echo "$(CRATES)" | sed -E 's/(^| )/ -p /g'`; \
cargo clippy $$packages --no-deps --all-targets --all-features -- -D warnings -D clippy::all $(DISABLED_LINTS)
cargo clippy $$packages --no-deps --all-targets --all-features -- -D warnings -D clippy::all

0 comments on commit 923a1c3

Please sign in to comment.