From 23575eb63c948afc34dbe58a5e24d803305b4803 Mon Sep 17 00:00:00 2001 From: Oleg Bespalov Date: Tue, 11 Jan 2022 17:49:44 +0100 Subject: [PATCH] Disable ireturn, tagliatelle linters Disable `ireturn` and `tagliatelle` linters because of the noise --- .golangci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index f231546cc51..cf0385dd32c 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -74,4 +74,6 @@ linters: - wrapcheck # a little bit too much for k6, maybe after https://github.com/tomarrell/wrapcheck/issues/2 is fixed - golint # this linter is deprecated - varnamelen # disabled before the final decision in (https://github.com/grafana/k6/pull/2323) + - ireturn + - tagliatelle fast: false