From 4753d60bfba38ec4275f416581217f2c5e26a5c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20=C5=9Awi=C4=85tek?= Date: Mon, 30 Sep 2024 19:00:40 +0200 Subject: [PATCH] Drop deprecated linters --- .golangci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 9b165b488..84a1f5106 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -37,9 +37,7 @@ linters: - unused # checks Go code for unused constants, variables, functions and types - govet # Vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string - ineffassign # detects when assignments to existing variables are not used - - structcheck # finds unused struct fields - typecheck # Like the front-end of a Go compiler, parses and type-checks Go code - - varcheck # Finds unused global variables and constants - asciicheck # simple linter to check that your code does not contain non-ASCII identifiers - bodyclose # checks whether HTTP response body is closed successfully - durationcheck # check for two durations multiplied together