From c3a3160ab7fa1ec9d73f1b2ead72127c3a8bf17b Mon Sep 17 00:00:00 2001 From: Alex Boten Date: Mon, 18 Jul 2022 13:16:27 -0700 Subject: [PATCH] [ci] disable G112 to unblock CI (#5700) Disabling G112 until https://github.com/open-telemetry/opentelemetry-collector/issues/5699 has been addressed. --- .golangci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index c10e571dbed..01702fdd710 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -134,6 +134,10 @@ issues: - text: "G402:" linters: - gosec + # https://github.com/open-telemetry/opentelemetry-collector/issues/5699 + - text: "G112:" + linters: + - gosec # The list of ids of default excludes to include or disable. By default it's empty. # See the list of default excludes here https://golangci-lint.run/usage/configuration.