From 594c972fc541a6b179f4f47707bf70a7e420de7e Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 31 May 2021 13:45:56 +0200 Subject: [PATCH] golangci.yml: do not limit max reported issues Signed-off-by: Sebastiaan van Stijn --- hack/validate/golangci-lint.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hack/validate/golangci-lint.yml b/hack/validate/golangci-lint.yml index 7f1f9c4396..c2081ed83f 100644 --- a/hack/validate/golangci-lint.yml +++ b/hack/validate/golangci-lint.yml @@ -115,3 +115,9 @@ issues: linters: - structcheck - unused + + # Maximum issues count per one linter. Set to 0 to disable. Default is 50. + max-issues-per-linter: 0 + + # Maximum count of issues with the same text. Set to 0 to disable. Default is 3. + max-same-issues: 0