diff --git a/.golangci.yml b/.golangci.yml index fa5268d..fffc973 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -14,6 +14,7 @@ linters: disable: - depguard # We don't have any packages we need to block + - exhaustruct # Too pedantic and impractical. Explicitly setting all struct values goes against Go's zero-value philosophy - 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