From 5265550ff3235b0cf5d4ed1e04cda659b6b33185 Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Tue, 27 Sep 2022 21:31:32 +0200 Subject: [PATCH] CI: ignore warning about missing package comment --- .golangci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index 44dfcdc7c..d97b3bd9b 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -55,3 +55,5 @@ issues: - exported (function|method|var|type|const) .* should have comment or be unexported # revive: ignore constants in all caps - don't use ALL_CAPS in Go names; use CamelCase + # revive: lots of packages don't have such a comment + - "package-comments: should have a package comment"