From cc7591d26074f03f9578830961d4462c252ad069 Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Tue, 28 Jan 2020 12:58:16 +0100 Subject: [PATCH] Fix golangci-lint CI It looks like we're hitting the same issue as described in: https://github.com/golangci/golangci-lint/issues/827 As a workaround, we now disable the unused linter for now. Signed-off-by: Sascha Grunert --- .golangci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index 72bbbc15223..28b4ab896ca 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -39,7 +39,9 @@ linters: - typecheck - unconvert - unparam - - unused + # TODO: re-enable if https://github.com/golangci/golangci-lint/issues/827 + # is closed + # - unused - varcheck - whitespace # - funlen