From 95f27318048506ed49ee82a7e8e55684ee39264c Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Mon, 5 Jun 2023 05:13:38 -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 "global" permit/deny lists for any projects using images from this project. refs GH-1024 --- oldstable/combined/.golangci.yml | 3 ++- stable/combined/.golangci.yml | 3 ++- unstable/combined/.golangci.yml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/oldstable/combined/.golangci.yml b/oldstable/combined/.golangci.yml index 0d8dc2f9..a70caf61 100644 --- a/oldstable/combined/.golangci.yml +++ b/oldstable/combined/.golangci.yml @@ -25,7 +25,8 @@ issues: # Reminder: Sort this after every change linters: enable: - - depguard + # https://github.com/atc0005/go-ci/issues/1024 + # - depguard - dogsled - dupl - exportloopref diff --git a/stable/combined/.golangci.yml b/stable/combined/.golangci.yml index 1b968cf0..1e884d28 100644 --- a/stable/combined/.golangci.yml +++ b/stable/combined/.golangci.yml @@ -25,7 +25,8 @@ issues: # Reminder: Sort this after every change linters: enable: - - depguard + # https://github.com/atc0005/go-ci/issues/1024 + # - depguard - dogsled - dupl - exportloopref diff --git a/unstable/combined/.golangci.yml b/unstable/combined/.golangci.yml index b6ce14a5..f984e2a8 100644 --- a/unstable/combined/.golangci.yml +++ b/unstable/combined/.golangci.yml @@ -32,7 +32,8 @@ issues: # Reminder: Sort this after every change linters: enable: - - depguard + # https://github.com/atc0005/go-ci/issues/1024 + # - depguard - dogsled - dupl - exportloopref