From d8cab67291f68ce5704ed9365ae162aa9b7bda98 Mon Sep 17 00:00:00 2001 From: Jeremy Letang Date: Wed, 20 Dec 2023 11:42:43 +0100 Subject: [PATCH] chore: disable new linters Signed-off-by: Jeremy Letang --- .golangci.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.golangci.toml b/.golangci.toml index fae75fd60eb..c12fc161b59 100644 --- a/.golangci.toml +++ b/.golangci.toml @@ -66,6 +66,14 @@ disable = [ "dupword", "depguard", "revive", + + ## new with 1.55.2, need to evaluate + "testifylint", + "inamedparam", + "perfsprint", + "typecheck", + "protogetter", + ## Disabled on-pupose. "exhaustruct", # We often make incomplete structs. "lll", # We don't have a line length.