From cd0293a2777f3732002c5150064da1f2d2a480f6 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Tue, 11 Nov 2025 12:20:11 +0100 Subject: [PATCH] CONTRIBUTING: add gofumpt formatter note Document the formatter we use. Signed-off-by: Paul Holzinger --- CONTRIBUTING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5ba57b3307..eb16b3c6d6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -146,7 +146,8 @@ It is not necessary to test a single change in multiple places. ### Go Format and lint -All code changes must pass ``make validatepr``. +All code changes must pass `make validatepr`. +We are using the [`gofumpt`](https://github.com/mvdan/gofumpt) formatter for our go code, you can either use it directly or format via `golangci-lint fmt`. The `validatepr`/`validate` make targets will fail if the code is not formatted correctly. ### Integration Tests