From e2941270f22e908312bc2e889539c2d707e0b91b Mon Sep 17 00:00:00 2001 From: Paul Mars Date: Fri, 13 Sep 2024 16:02:30 +0200 Subject: [PATCH] CI: Exclude rule G115 of gosec This rule is not yet working properly. This exclusion should be removed as soon as this is fixed. At this point we will have to deal with the true positives. Signed-off-by: Paul Mars --- .github/.golangci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/.golangci.yml b/.github/.golangci.yml index c983832c..aeed8219 100644 --- a/.github/.golangci.yml +++ b/.github/.golangci.yml @@ -24,6 +24,9 @@ linters-settings: max-func-lines: 5 errcheck: check-blank: true + gosec: + excludes: + - G115 # should be removed as soon as this rule works properly issues: # these values ensure that all issues will be surfaced max-issues-per-linter: 0