We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 340d8f0 commit 18223c8Copy full SHA for 18223c8
.golangci.yaml
@@ -697,6 +697,10 @@ issues:
697
- gosec
698
- typecheck
699
700
+ - path: go.mod
701
+ linters:
702
+ - gomoddirectives
703
+
704
- path: go/pkg/mod/
705
linters:
706
internal/repository/server_test.go
@@ -2,13 +2,13 @@ package repository_test
2
3
import (
4
"encoding/json"
5
- "k8s.io/utils/ptr"
6
"net/http"
7
"net/http/httptest"
8
"testing"
9
10
stackitdnsclient "github.com/stackitcloud/stackit-sdk-go/services/dns"
11
"github.com/stretchr/testify/assert"
+ "k8s.io/utils/ptr"
12
)
13
14
func getTestServer(t *testing.T) *httptest.Server { //nolint:funlen // This is a test helper
0 commit comments