From 3b1e16a1250b6777d349668a89a36bb8be9601c4 Mon Sep 17 00:00:00 2001 From: Prajwal S N Date: Sun, 1 Sep 2024 19:51:00 +0200 Subject: [PATCH] ci(golangci-lint): disable gosec G115 Changes were made to this check in v1.60.2, which introduced a lot of noise and false positives. This commit disables this for now. Ref: https://github.com/securego/gosec/issues/1185 Signed-off-by: Prajwal S N --- .golangci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index 694f6adf8..a0d20be21 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -16,3 +16,7 @@ linters: linters-settings: exhaustive: default-signifies-exhaustive: true + gosec: + excludes: + # https://github.com/securego/gosec/issues/1185 + - G115