From 6e01ae6002acaacf2f9cbad0ce1ea01d71c9292a Mon Sep 17 00:00:00 2001 From: sneak Date: Wed, 9 Jul 2025 06:18:52 -0700 Subject: [PATCH] chore: exclude errcheck linter from test files Test files often ignore error returns for brevity and clarity, especially for cleanup operations that don't affect test outcomes. --- .golangci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.golangci.yml b/.golangci.yml index 6bb3fda..c358408 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -86,6 +86,7 @@ issues: - gochecknoglobals - mnd - unparam + - errcheck # Allow long lines in generated code or test data - path: ".*_gen\\.go"