From 50b706eeed85532c6293f52079d0ca59b5012b96 Mon Sep 17 00:00:00 2001 From: Juan Font Date: Tue, 4 Apr 2023 20:24:47 +0000 Subject: [PATCH] Remove deprecated linters + one casuing issues with imports --- .golangci.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.golangci.yaml b/.golangci.yaml index 9902971c..d2172631 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -29,6 +29,14 @@ linters: - execinquery - exhaustruct - nolintlint + - musttag # causes issues with imported libs + + # deprecated + - structcheck # replaced by unused + - ifshort # deprecated by the owner + - varcheck # replaced by unused + - nosnakecase # replaced by revive + - deadcode # replaced by unused # We should strive to enable these: - wrapcheck