From 700103d76a0e1bdc0c8eabc9bf3ae4aa8e7ad49a Mon Sep 17 00:00:00 2001 From: Justen Stall <39888103+justenstall@users.noreply.github.com> Date: Tue, 22 Apr 2025 13:34:33 -0400 Subject: [PATCH] chore: add depguard rule for github.com/pkg/errors Signed-off-by: Justen Stall <39888103+justenstall@users.noreply.github.com> --- .golangci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index a34e5f538..d8401bdd6 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -20,6 +20,8 @@ linters: deny: - pkg: github.com/hashicorp/go-multierror desc: "use errors instead" + - pkg: github.com/pkg/errors + desc: "use errors instead" dupl: threshold: 400 exclusions: