From 9103e3c7466a526dd8912542c0e8aa45172aa0a4 Mon Sep 17 00:00:00 2001 From: Timo Riski Date: Thu, 21 Dec 2023 16:43:01 +0200 Subject: [PATCH] chore(lint): remove deprecated linters CI run reported that the `deadcode` and `varcheck` linters are deprecated and replaced with `unused` which we are already using. --- .trunk/configs/.golangci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.trunk/configs/.golangci.yml b/.trunk/configs/.golangci.yml index a2c611b43..37781d27c 100644 --- a/.trunk/configs/.golangci.yml +++ b/.trunk/configs/.golangci.yml @@ -14,7 +14,6 @@ issues: linters: disable-all: true enable: - - deadcode - errcheck - gofmt - gosimple @@ -24,7 +23,6 @@ linters: - staticcheck - unconvert - unused - - varcheck - vet - goimports - gomnd