From 5cdbe12ef7ec1ee2d99c5430924aab23c0fea503 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 2 Jan 2026 15:15:21 +0100 Subject: all: remove unused nolint directives --- pkg/cover/cover_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg/cover') diff --git a/pkg/cover/cover_test.go b/pkg/cover/cover_test.go index 169dbf08c..1d179ebd3 100644 --- a/pkg/cover/cover_test.go +++ b/pkg/cover/cover_test.go @@ -67,7 +67,7 @@ func TestMergeDiff(t *testing.T) { func TestPerLineCoverage(t *testing.T) { const End = backend.LineEnd // Start line:col - end line:col. - // nolint + // nolint: govet covered := []backend.Range{ // Just covered. {1, 2, 1, 10}, @@ -88,7 +88,7 @@ func TestPerLineCoverage(t *testing.T) { {42, 20, 42, 30}, {42, 10, 42, 25}, } - // nolint + // nolint:govet uncovered := []backend.Range{ {10, 20, 10, 30}, {11, 0, 11, 20}, -- cgit mrf-deployment