From 596d2e0998deac2976ca047bf9b9bb5d5de9dbee Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Fri, 7 Jun 2024 14:22:31 -0400 Subject: [PATCH] golangci: remove deadcode/varcheck Both linters are not supported anymore and trigger warnings every time we try to lint our code. To not see those warnings anymore, we remove them from the configuration. --- .golangci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 656b0373a..d62815ea5 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -30,7 +30,6 @@ issues: linters: disable-all: true enable: - - deadcode - errcheck - goimports - gosimple @@ -39,7 +38,6 @@ linters: - staticcheck - unconvert - unused - - varcheck fast: true # options for analysis running