lint: Raise max issues output (#2067)

By default it stops after 3 issues of a given type, which gives false
impression and also unhelpful if you fixing it with aider.

1000 is almost like unlimited but not unlimited in case there is a bug
in a linter.
This commit is contained in:
Denis Bilenko 2025-01-02 12:23:48 +01:00 committed by GitHub
parent 890c57eabe
commit cae21693bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -40,3 +40,5 @@ linters-settings:
- require-error
issues:
exclude-dirs-use-default: false # recommended by docs https://golangci-lint.run/usage/false-positives/
max-issues-per-linter: 1000
max-same-issues: 1000