From d1adaa50233c85f9d31025e2231353d5e645f3b3 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