From 20a31a407ca1b3bef880f91adb6b5e45533cfd90 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Mon, 5 Jun 2023 05:39:30 -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 5c2c0a9..5be53f4 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