From 07a640947497ad90da1ff5d55e8d75e87846c103 Mon Sep 17 00:00:00 2001 From: Grzegorz Dlugoszewski Date: Sun, 24 Aug 2025 17:10:38 +0200 Subject: [PATCH] Disable godox linter temporarily --- .golangci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.golangci.yml b/.golangci.yml index 224e16d..db25b05 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -17,6 +17,7 @@ linters: - exhaustruct # Too pedantic and impractical. Explicitly setting all struct values goes against Go's zero-value philosophy - forbidigo # Not suitable for CLI apps where printing to stdout is fine - gochecknoglobals # It's too strict and doesn't distinguish between "bad" globals (mutable shared state) and "good" globals (immutable configuration) + - godox # TODO: enable it and handle all the remaning TODOs - 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