0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-02 04:29:00 +02:00

Disable lint typecheck

This commit is contained in:
Till Faelligen 2021-08-10 15:09:20 +02:00
parent 47fbf69e98
commit 3c76f219d3

View file

@ -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
}