From f51f9e83658101202e7b4175864279eb2bfa4155 Mon Sep 17 00:00:00 2001 From: Joshua Thijssen Date: Mon, 13 Nov 2023 20:22:03 +0100 Subject: [PATCH] deprecated 'make fix' --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e25ba44f5..92258ae24 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,10 @@ build: ## Build the project section "Cargo build" ;\ cargo build -fix: ## Fix formatting and clippy errors +fix: ## Fix formatting and clippy errors (deprecated) + echo "Use 'make format' instead" + +format: ## Fix formatting and clippy errors cargo fmt cargo clippy --fix --allow-dirty --allow-staged