From 45df1f9db07d7c7c2e85a0b906ad41291e20dda6 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Mon, 5 Jun 2023 05:46:05 -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 db568ebc..48d5cb89 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -16,7 +16,8 @@ issues: linters: enable: - - depguard + # https://github.com/atc0005/go-ci/issues/1024 + # - depguard - dogsled - dupl - exportloopref