From 1b1cf51466a1a46414ebae7a4fae5a7c420a6e2f Mon Sep 17 00:00:00 2001 From: sapcc-bot Date: Wed, 4 Oct 2023 08:30:25 +0000 Subject: [PATCH] Run go-makefile-maker --- .golangci.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.golangci.yaml b/.golangci.yaml index 94def85..306adda 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -37,8 +37,10 @@ linters-settings: forbid: # ioutil package has been deprecated: https://github.com/golang/go/issues/42026 - ^ioutil\..*$ - # Using http.DefaultServeMux is discouraged because it's a global variable that some packages silently and magically add handlers to (esp. net/http/pprof). - # Applications wishing to use http.ServeMux should obtain local instances through http.NewServeMux() instead of using the global default instance. + # Using http.DefaultServeMux is discouraged because it's a global variable + # that some packages silently and magically add handlers to (esp. net/http/pprof). + # Applications wishing to use http.ServeMux should obtain local instances + # through http.NewServeMux() instead of using the global default instance. - ^http.DefaultServeMux$ - ^http.Handle(?:Func)?$ gocritic: @@ -71,7 +73,9 @@ linters-settings: local-prefixes: github.com/sapcc/limesctl/v3 gosec: excludes: - # gosec wants us to set a short ReadHeaderTimeout to avoid Slowloris attacks, but doing so would expose us to Keep-Alive race conditions (see https://iximiuz.com/en/posts/reverse-proxy-http-keep-alive-and-502s/) + # gosec wants us to set a short ReadHeaderTimeout to avoid Slowloris attacks, + # but doing so would expose us to Keep-Alive race conditions. + # See: https://iximiuz.com/en/posts/reverse-proxy-http-keep-alive-and-502s/ - G112 # created file permissions are restricted by umask if necessary - G306