From 3252f60df5561d3eea9678b8e38145d17f7b4f5f Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Thu, 18 May 2023 18:14:42 +0200 Subject: [PATCH] Ignore deprecated imports for poly1305 and openpgp --- .golangci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index 88c6544e7..98b5f9e03 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -48,3 +48,6 @@ issues: - 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" + # staticcheck: there's no easy way to replace these packages + - "SA1019: \"golang.org/x/crypto/poly1305\" is deprecated" + - "SA1019: \"golang.org/x/crypto/openpgp\" is deprecated"