Skip to content

Commit 18223c8

Browse files
author
Patrick Koss
committed
fix lint
1 parent 340d8f0 commit 18223c8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.golangci.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,10 @@ issues:
697697
- gosec
698698
- typecheck
699699

700+
- path: go.mod
701+
linters:
702+
- gomoddirectives
703+
700704
- path: go/pkg/mod/
701705
linters:
702706
- typecheck

internal/repository/server_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ package repository_test
22

33
import (
44
"encoding/json"
5-
"k8s.io/utils/ptr"
65
"net/http"
76
"net/http/httptest"
87
"testing"
98

109
stackitdnsclient "github.com/stackitcloud/stackit-sdk-go/services/dns"
1110
"github.com/stretchr/testify/assert"
11+
"k8s.io/utils/ptr"
1212
)
1313

1414
func getTestServer(t *testing.T) *httptest.Server { //nolint:funlen // This is a test helper

0 commit comments

Comments
 (0)