Skip to content

Commit 029e9ba

Browse files
author
sapcc-bot
committed
Run go-makefile-maker
1 parent aafeaff commit 029e9ba

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.golangci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ linters:
7474
settings:
7575
dupword:
7676
# Do not choke on SQL statements like `INSERT INTO things (foo, bar, baz) VALUES (TRUE, TRUE, TRUE)`.
77-
ignore: ["TRUE", "FALSE", "NULL"]
77+
ignore: [ "TRUE", "FALSE", "NULL" ]
7878
errcheck:
7979
check-type-assertions: false
8080
# Report about assignment of errors to blank identifier.
@@ -103,7 +103,7 @@ linters:
103103
min-occurrences: 5
104104
ignore-tests: true
105105
ignore-string-values:
106-
- "^[a-zA-Z_-]{1,16}$" # ignore short identifiers like "account" or "project_id"
106+
- '^[a-zA-Z_-]{1,16}$' # ignore short identifiers like "account" or "project_id"
107107
gocritic:
108108
enabled-checks:
109109
- boolExprSimplify
@@ -136,7 +136,7 @@ linters:
136136
# for github.com/sapcc/vpa_butler
137137
- k8s.io/client-go
138138
toolchain-forbidden: true
139-
go-version-pattern: 1\.\d+(\.\d+)?$
139+
go-version-pattern: 1\.\d+(\.0)?$
140140
gosec:
141141
excludes:
142142
# 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/

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/cobaltcore-dev/cloud-profile-sync
22

3-
go 1.26.2
3+
go 1.26
44

55
require (
66
github.com/blang/semver/v4 v4.0.0

0 commit comments

Comments
 (0)