From f4a68a0a54c22bd2d14282e1055a10cb22ef0d29 Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Thu, 19 Dec 2024 19:48:12 -0500 Subject: [PATCH] build: add gofmt to format make target (#168) Signed-off-by: Chris Gianelloni --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8f89e93..a2ecc4f 100644 --- a/Makefile +++ b/Makefile @@ -27,8 +27,9 @@ mod-tidy: clean: rm -f $(BINARY) -format: +format: mod-tidy go fmt ./... + gofmt -s -w $(GO_FILES) golines: golines -w --ignore-generated --chain-split-dots --max-len=80 --reformat-tags .