You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following pieces of code triggers false positives it seems:
const (
// KubernetesCACN is a default CN for Kubernetes CA certificate, as recommended by// https://kubernetes.io/docs/setup/best-practices/certificates/.KubernetesCACN="kubernetes-ca"// KubernetesFrontProxyCACN is a default CN for Kubernetes front proxy CA certificate,// as recommended by https://kubernetes.io/docs/setup/best-practices/certificates/.KubernetesFrontProxyCACN="kubernetes-front-proxy-ca"// EtcdCACN is a default CN for etcd CA certificate, as recommended by// the https://kubernetes.io/docs/setup/best-practices/certificates/.EtcdCACN="etcd-ca"
)
$ golangci-lint run --disable-all --enable=godot --max-same-issues=0 --max-issues-per-linter=0 --build-tags integration,e2e --timeout 10m --exclude-use-default=false --sort-results ./...pkg/pki/etcd.go:8:72: Comment should end in a period (godot) // EtcdCACN is a default CN for etcd CA certificate, as recommended by ^pkg/pki/kubernetes.go:8:84: Comment should end in a period (godot) // KubernetesCACN is a default CN for Kubernetes CA certificate, as recommended by ^pkg/pki/kubernetes.go:12:88: Comment should end in a period (godot) // KubernetesFrontProxyCACN is a default CN for Kubernetes front proxy CA certificate, ^
$ golangci-lint versiongolangci-lint has version 1.33.0 built from b90551c on 2020-11-23T05:15:36Z
The text was updated successfully, but these errors were encountered:
Following pieces of code triggers false positives it seems:
The text was updated successfully, but these errors were encountered: