From 0711119b96ca62bc1c3d24997ea9f643c68212bb Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Thu, 13 Aug 2020 10:31:34 +0700 Subject: [PATCH] use depguard to make sure that qtls is only imported in internal/qtls --- .golangci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index ed4bacf3..069b392c 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -4,6 +4,12 @@ run: - internal/handshake/unsafe_test.go linters-settings: + depguard: + type: blacklist + packages: + - github.com/marten-seemann/qtls + packages-with-error-message: + - github.com/marten-seemann/qtls: "importing qtls only allowed in internal/qtls" misspell: ignore-words: - ect @@ -12,6 +18,7 @@ linters: disable-all: true enable: - deadcode + - depguard - goconst - goimports - gosimple @@ -33,3 +40,6 @@ issues: - path: qlog/ linters: - goconst + - path: internal/qtls + linters: + - depguard