6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-04 11:01:46 +00:00

Disable forbidigo linter

This commit is contained in:
Grzegorz Dlugoszewski
2025-08-24 16:57:01 +02:00
parent f20ab7dea2
commit 88608f9df4

View File

@@ -15,6 +15,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
- 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)
- paralleltest # Tests are fast already and paralellizing them adds complexity
- wsl # We use wsl_v5 instead