Text file
src/cmd/go/testdata/mod/github.com_golangci_golangci-lint_v2_v2.10.1.txt
1 module github.com/golangci/golangci-lint/v2@latest
2
3 Original import done via `go run addmod.go`. Dependencies have been manually
4 reduced to the minimum required by the test `get_tool_issue_74691`.
5 -- .mod --
6 module github.com/golangci/golangci-lint/v2
7
8 // The minimum Go version must always be latest-1.
9 // This version should never be changed outside of the PR to add the support of newer Go version.
10 // Only golangci-lint maintainers are allowed to change it.
11 go 1.25.0
12
13 require github.com/securego/gosec/v2 v2.23.0
14 -- .info --
15 {"Version":"v2.10.1"}
16 -- cmd/golangci-lint/main.go --
17 package main
18
19 import _ "github.com/securego/gosec/v2/rules"
20
21 func main()
22
23
View as plain text