From 46f5aa0c068dc793ece27ef5632d927b80dc846a Mon Sep 17 00:00:00 2001 From: Grzegorz Dlugoszewski Date: Sun, 24 Aug 2025 15:47:57 +0200 Subject: [PATCH] Disable gochecknoglobals linter --- .golangci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.golangci.yml b/.golangci.yml index e2a2967..fa5268d 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -14,6 +14,7 @@ linters: disable: - depguard # We don't have any packages we need to block + - gochecknoglobals # It's too strict and doesn't distinguish between "bad" globals (mutable shared state) and "good" globals (immutable configuration) - paralleltest # Tests are fast already and paralellizing them adds complexity - wsl # We use wsl_v5 instead - wrapcheck # Adds too much bloat, many of the errors are contextual enough and don't need wrapping