From bc0ea799aa2633ef8bd09927ccbb48916046395c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20St=C3=A4bler?= Date: Tue, 5 May 2026 13:34:50 +0200 Subject: [PATCH] chore: disable goconst linter The goconst linter produces many false positives in test files where repeating string literals is more readable than extracting constants. --- .golangci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index 2f46c72..7f8314c 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -8,7 +8,6 @@ linters: - dupl - errcheck - ginkgolinter - - goconst - gocyclo - govet - ineffassign