From 8fd9c177f2fd34c4cad0d1ade2be77b58361132e Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Mon, 5 Jun 2023 05:44:50 -0500 Subject: [PATCH] Disable depguard linter By having v2 of the linter enabled without an explicitly defined configuration the linter assumes that *no* non-stdlib packages are permitted. We disable the linter because we do not have any need to define permit/deny lists for packages used by this project at this time. refs atc0005/go-ci#1024 --- .golangci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index 15d7706..b213f8f 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -26,7 +26,8 @@ issues: linters: enable: - - depguard + # https://github.com/atc0005/go-ci/issues/1024 + # - depguard - dogsled - dupl - exportloopref