From 1914f2d289894a19e7394b6055654ad97928998e Mon Sep 17 00:00:00 2001 From: Frederic BIDON Date: Mon, 22 Jun 2026 08:01:54 +0200 Subject: [PATCH] chore: disabled goconst linter goconst has been "improved" lately and has actually become too noisy. It used to be useful, but now it is just trying to nudge us into transforming every thing into a const. This is not really helping our codebase. We disable it entirely until we find a way to figure out more effective settings for this linter. Signed-off-by: Frederic BIDON --- .golangci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.golangci.yml b/.golangci.yml index 3c4cd48..8a3b3bf 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -2,6 +2,7 @@ version: "2" linters: default: all disable: + - goconst # has become too noisy. Disabled - depguard - funlen - gomoddirectives