diff --git a/.golangci.yml b/.golangci.yml index 9e30fb6140..07b2c760c0 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -27,7 +27,6 @@ linters: - golint - govet - ineffassign - - interfacer - lll - megacheck - misspell diff --git a/pkg/cluster/cluster.go b/pkg/cluster/cluster.go index 79f2b6a93b..24de3a85b0 100644 --- a/pkg/cluster/cluster.go +++ b/pkg/cluster/cluster.go @@ -646,7 +646,6 @@ func createClusterSpec(ocmClusterClient *cmv1.ClustersClient, return clusterSpec, nil } -// nolint:interfacer func IsEmptyCIDR(cidr net.IPNet) bool { return cidr.String() == "" }