From 923a1c3120cd8ccc43b35b785a5ebe87e1234aba Mon Sep 17 00:00:00 2001 From: "Evgeny (Zhenia) Dolgii" Date: Wed, 19 Feb 2025 11:02:02 +0000 Subject: [PATCH] chore(clippy): remove exclusions for false positive rules --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 07b80f44a..b956de545 100644 --- a/Makefile +++ b/Makefile @@ -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