diff --git a/.golangci.yml b/.golangci.yml index a86971538da..13e41d8d2a9 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -70,6 +70,11 @@ issues: - gosec - perfsprint - usestdlibvars + # Ignoring gosec G402: TLS MinVersion too low + # as the https://pkg.go.dev/crypto/tls#Config handles MinVersion default well. + - text: "G402: TLS MinVersion too low." + linters: + - gosec include: # revive exported should have comment or be unexported. - EXC0012