From 6a49c8df0c58bf3e302ce8aa7653083bb8bb46b1 Mon Sep 17 00:00:00 2001 From: Jonathon Anderson Date: Mon, 23 Oct 2023 17:55:52 -0600 Subject: [PATCH] Add `make fmt` to Makefile Implemented using the standard golang formatter. Signed-off-by: Jonathon Anderson --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 5a22fe4f..d9a725a2 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,10 @@ vendor: tidy: go mod tidy +.PHONY: fmt +fmt: + go fmt ./... + config = etc/wwapic.conf \ etc/wwapid.conf \ etc/wwapird.conf \