From 3c76f219d3cb43e4ee9a9c319abd0b8879972cfc Mon Sep 17 00:00:00 2001 From: Till Faelligen Date: Tue, 10 Aug 2021 15:09:20 +0200 Subject: [PATCH] Disable lint typecheck --- cmd/dendrite-demo-yggdrasil/yggconn/node.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/dendrite-demo-yggdrasil/yggconn/node.go b/cmd/dendrite-demo-yggdrasil/yggconn/node.go index 002e8071f..8e3083ea4 100644 --- a/cmd/dendrite-demo-yggdrasil/yggconn/node.go +++ b/cmd/dendrite-demo-yggdrasil/yggconn/node.go @@ -26,7 +26,7 @@ import ( "os" "strings" - "github.com/lucas-clemente/quic-go" + "github.com/lucas-clemente/quic-go" //nolint: typecheck "github.com/matrix-org/gomatrixserverlib" "github.com/neilalexander/utp" @@ -44,7 +44,7 @@ type Node struct { config *yggdrasilconfig.NodeConfig multicast *yggdrasilmulticast.Multicast log *gologme.Logger - listener quic.Listener + listener quic.Listener //nolint: typecheck utpSocket *utp.Socket incoming chan net.Conn }