From 50e226e3d45769329331ac29bed3244a639f2637 Mon Sep 17 00:00:00 2001 From: sneak Date: Tue, 22 Sep 2026 23:29:44 +0000 Subject: [PATCH] Disable deprecated gomodguard linter (closes #208) With default: all, golangci-lint still enables gomodguard next to its replacement gomodguard_v2 and warns on every lint run. Disable it the same way wsl is disabled; gomodguard_v2 stays enabled. Model: opus-5-5 --- .golangci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.golangci.yml b/.golangci.yml index 26b1610..8a90995 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -16,6 +16,7 @@ linters: - depguard # Dependency allow/block lists - godot # Requires comments to end with periods - wsl # Deprecated, replaced by wsl_v5 + - gomodguard # Deprecated, replaced by gomodguard_v2 - wrapcheck # Too verbose for internal packages - varnamelen # Short names like db, id are idiomatic Go settings: -- 2.54.0