We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e77d6c commit 5b29bb6Copy full SHA for 5b29bb6
go.mod
@@ -140,6 +140,7 @@ require (
140
go.augendre.info/fatcontext v0.9.0
141
go.uber.org/automaxprocs v1.6.0
142
go.yaml.in/yaml/v3 v3.0.4
143
+ golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b
144
golang.org/x/mod v0.32.0
145
golang.org/x/sync v0.19.0
146
golang.org/x/sys v0.40.0
pkg/golinters/exptostd/exptostd_integration_test.go
@@ -3,6 +3,10 @@ package exptostd
3
import (
4
"testing"
5
6
+ // Without this dependency, the analyzer tests related to fix fails.
7
+ // The packages `slices` have been randomly chosen to import `golang.org/x/exp`.
8
+ _ "golang.org/x/exp/slices"
9
+
10
"github.com/golangci/golangci-lint/v2/test/testshared/integration"
11
)
12
0 commit comments