Skip to content

Commit

Permalink
golangci: show all linting issues
Browse files Browse the repository at this point in the history
By default, output is limited to 50 issues per linter, and 3 "same"
issues. When enabling a new linter, this requires multiple runs of
the linter to get a list of all issues.

Let's assume we don't introduce "many" new issues at a time, and just
show all the issues that were found.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
  • Loading branch information
thaJeztah committed Oct 12, 2022
1 parent f75dbc1 commit befb6c2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@ linters:
linters-settings:
govet:
check-shadowing: true

issues:
max-issues-per-linter: 0
max-same-issues: 0

0 comments on commit befb6c2

Please sign in to comment.