From 382fe6c5bdc4757ace6b56903a4737eda1665bb8 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Mon, 5 Jun 2023 05:48:03 -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 619706b..b384da5 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