From 6836cf6a6fd0027ea21f8d31bff5d023040d9db4 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Tue, 29 Apr 2025 16:36:38 +0300 Subject: [PATCH] Remove redundant typecheck linter (#955) --- .golangci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index 9f2ba52..a598882 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -149,7 +149,6 @@ linters: - 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 - staticcheck # Staticcheck is a go vet on steroids, applying a ton of static analysis checks - - typecheck # Like the front-end of a Go compiler, parses and type-checks Go code - unused # Checks Go code for unused constants, variables, functions and types ## disabled by default # - asasalint # Check for pass []any as any in variadic func(...any)