From be78a71bb750231426da5c9007ff698892e071da Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Fri, 20 Feb 2026 21:22:34 +0100 Subject: [PATCH] feat(Makefile): add go fix to fmt command --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 8a186041..73d9d57f 100644 --- a/Makefile +++ b/Makefile @@ -221,6 +221,7 @@ lint-todo: ## Find TODOs in Golang codebase .PHONY: fmt fmt: ## Format Golang codebase and "optimize" the dependencies + go fix ./... golangci-lint fmt go mod tidy