From befb6c27e220c6d7d3f702e3b564429b1047f58f Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 12 Oct 2022 17:50:35 +0200 Subject: [PATCH] golangci: show all linting issues 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 --- .golangci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index eb5f948..875893a 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -22,3 +22,7 @@ linters: linters-settings: govet: check-shadowing: true + +issues: + max-issues-per-linter: 0 + max-same-issues: 0