From 8334a67804a2daca621b67342b643f031906d00d Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Wed, 27 Mar 2024 19:12:58 +0100 Subject: [PATCH] chore(rust): More clippy in Makefile (#15340) --- crates/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/Makefile b/crates/Makefile index e344ceba4c50..44a86593e56a 100644 --- a/crates/Makefile +++ b/crates/Makefile @@ -14,11 +14,11 @@ check: ## Run cargo check with all features .PHONY: clippy clippy: ## Run clippy with all features - cargo clippy -p polars --all-features -- -W clippy::dbg_macro + cargo clippy --all-targets --all-features -- -W clippy::dbg_macro .PHONY: clippy-default clippy-default: ## Run clippy with default features - cargo clippy -p polars -- -W clippy::dbg_macro + cargo clippy --all-targets -- -W clippy::dbg_macro .PHONY: pre-commit pre-commit: fmt clippy clippy-default ## Run autoformatting and linting