From 7ef014a433477796d8a7a53620bf1f75788d584e Mon Sep 17 00:00:00 2001 From: junxiang Mu <1948535941@qq.com> Date: Wed, 6 Aug 2025 11:22:08 +0800 Subject: [PATCH] Fix: Separate Clippy's fix and check commands into two commands. Signed-off-by: junxiang Mu <1948535941@qq.com> --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6f8eb6cd..a36880bf 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,8 @@ fmt-check: .PHONY: clippy clippy: @echo "🔍 Running clippy checks..." - cargo clippy --all-targets --all-features --fix --allow-dirty -- -D warnings + cargo clippy --fix --allow-dirty + cargo clippy --all-targets --all-features -- -D warnings .PHONY: check check: