From f7d320e2f4c2d814a67834f1611bd7560c44a42a Mon Sep 17 00:00:00 2001 From: naskya Date: Mon, 22 Jan 2024 01:02:40 +0900 Subject: [PATCH] dev: execute clippy at the end of pre-commit so you don't miss the output --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 63fb38fc7..0a6151532 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ build: build-image .PHONY: pre-commit -pre-commit: shellcheck rust-lint regenerate-entities update-index-js +pre-commit: shellcheck regenerate-entities update-index-js rust-lint .PHONY: debug