From 68f8fba7c2de7f1e139db9e0b33a964adbcef792 Mon Sep 17 00:00:00 2001 From: Marko Date: Mon, 30 Sep 2019 13:46:55 -0700 Subject: [PATCH] .golangci: disable new linters (#4024) * Add Version to golangci - added version to golangci because of recent update Signed-off-by: Marko Baricevic * remove unused for 1.17 * disable new linters --- .golangci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index 0991cdf1e..b2e958090 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -14,6 +14,10 @@ linters: - gochecknoglobals - gochecknoinits - stylecheck + - funlen + - godox + - dogsled + - whitespace # linters-settings: # govet: # check-shadowing: true @@ -45,4 +49,3 @@ linters: # disabled-checks: # - wrapperFunc # - commentFormatting # https://github.com/go-critic/go-critic/issues/755 -