build: bump golangci-lint to 2.1.6

This commit is contained in:
Oleksandr Redko 2025-06-26 21:18:20 +03:00 committed by Henrique Dias
parent da03728cd7
commit 1d494ff315
No known key found for this signature in database
15 changed files with 515 additions and 436 deletions

View file

@ -44,7 +44,6 @@ func parseQueryFiles(r *http.Request, f *files.FileInfo, _ *users.User) ([]strin
return fileSlice, nil
}
//nolint:goconst
func parseQueryAlgorithm(r *http.Request) (string, archiver.Writer, error) {
switch r.URL.Query().Get("algo") {
case "zip", "true", "":

View file

@ -91,7 +91,7 @@ var sharePostHandler = withPermShare(func(w http.ResponseWriter, r *http.Request
defer r.Body.Close()
}
bytes := make([]byte, 6) //nolint:gomnd
bytes := make([]byte, 6) //nolint:mnd
_, err := rand.Read(bytes)
if err != nil {
return http.StatusInternalServerError, err
@ -130,7 +130,7 @@ var sharePostHandler = withPermShare(func(w http.ResponseWriter, r *http.Request
var token string
if len(hash) > 0 {
tokenBuffer := make([]byte, 96) //nolint:gomnd
tokenBuffer := make([]byte, 96) //nolint:mnd
if _, err := rand.Read(tokenBuffer); err != nil {
return http.StatusInternalServerError, err
}

View file

@ -41,7 +41,7 @@ func tusPostHandler() handleFunc {
}
fileFlags := os.O_CREATE | os.O_WRONLY
if r.URL.Query().Get("override") == "true" {
if r.URL.Query().Get("override") == "true" { //nolint:goconst
fileFlags |= os.O_TRUNC
}