From 288a642483239839c76fed628b22a30c2949b398 Mon Sep 17 00:00:00 2001 From: Grzegorz Dlugoszewski Date: Sun, 24 Aug 2025 15:00:15 +0200 Subject: [PATCH] Disable wrapcheck linter --- .golangci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index f930ed8..b2b5a08 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -13,9 +13,10 @@ linters: default: all disable: - - depguard # We don't have any packages we need to block - - paralleltest # Tests are fast already and paralellizing them adds complexity - - wsl # We use wsl_v5 instead + - depguard # We don't have any packages we need to block + - paralleltest # Tests are fast already and paralellizing them adds complexity + - wsl # We use wsl_v5 instead + - wrapcheck # Adds too much bloat, many of the errors are contextual enough and don't need wrapping exclusions: rules: