From 1fc005474942fc5fe2c5587568d66c0f49528a0e Mon Sep 17 00:00:00 2001 From: Gusted Date: Wed, 10 Nov 2021 17:43:45 +0100 Subject: [PATCH] Remove `golint` as linter - Partialy resolvess #17596 - In the newer versions of `golangci-lint`, golint is deprecated and replaced by the `revive` linter. Thus removing the `golint` linter is a good idea, as we're already using the `revive` linter which covers all the current `golint` cases. --- .golangci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index 2d66e01ffaf8a..abdd276cb6acf 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -9,7 +9,6 @@ linters: - unused - structcheck - varcheck - - golint - dupl #- gocyclo # The cyclomatic complexety of a lot of functions is too high, we should refactor those another time. - gofmt