2020-12-08 18:23:35 +03:00
|
|
|
module github.com/AdguardTeam/AdGuardHome/internal/tools
|
|
|
|
|
2023-08-02 16:26:34 +03:00
|
|
|
go 1.20
|
2020-12-08 18:23:35 +03:00
|
|
|
|
|
|
|
require (
|
2022-08-03 14:36:18 +03:00
|
|
|
github.com/fzipp/gocyclo v0.6.0
|
2023-07-03 14:10:40 +03:00
|
|
|
github.com/golangci/misspell v0.4.1
|
|
|
|
github.com/gordonklaus/ineffassign v0.0.0-20230610083614-0e73809eb601
|
2023-02-01 15:41:34 +03:00
|
|
|
github.com/kisielk/errcheck v1.6.3
|
|
|
|
github.com/kyoh86/looppointer v0.2.1
|
2023-09-07 17:13:48 +03:00
|
|
|
github.com/securego/gosec/v2 v2.17.0
|
|
|
|
// TODO(a.garipov): Return to latest once the release is tagged
|
|
|
|
// correctly. See uudashr/gocognit#31.
|
|
|
|
github.com/uudashr/gocognit v1.0.8-0.20230906062305-bc9ca12659bf
|
|
|
|
golang.org/x/tools v0.13.0
|
|
|
|
golang.org/x/vuln v1.0.1
|
|
|
|
honnef.co/go/tools v0.4.5
|
2023-04-18 16:07:11 +03:00
|
|
|
mvdan.cc/gofumpt v0.5.0
|
2023-09-07 17:13:48 +03:00
|
|
|
mvdan.cc/unparam v0.0.0-20230815095028-f7c6fb1088f0
|
2022-04-06 18:27:21 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2023-07-03 14:10:40 +03:00
|
|
|
github.com/BurntSushi/toml v1.3.2 // indirect
|
2023-09-07 17:13:48 +03:00
|
|
|
github.com/ccojocar/zxcvbn-go v1.0.1 // indirect
|
2022-11-02 16:18:02 +03:00
|
|
|
github.com/google/go-cmp v0.5.9 // indirect
|
2023-09-07 17:13:48 +03:00
|
|
|
github.com/google/uuid v1.3.1 // indirect
|
2023-07-26 13:18:44 +03:00
|
|
|
github.com/gookit/color v1.5.4 // indirect
|
2022-04-06 18:27:21 +03:00
|
|
|
github.com/kyoh86/nolint v0.0.1 // indirect
|
2022-11-02 16:18:02 +03:00
|
|
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
2023-04-05 16:35:27 +03:00
|
|
|
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
|
2023-09-07 17:13:48 +03:00
|
|
|
golang.org/x/exp/typeparams v0.0.0-20230905200255-921286631fa9 // indirect
|
2023-07-12 15:13:31 +03:00
|
|
|
golang.org/x/mod v0.12.0 // indirect
|
2023-07-03 14:10:40 +03:00
|
|
|
golang.org/x/sync v0.3.0 // indirect
|
2023-09-07 17:13:48 +03:00
|
|
|
golang.org/x/sys v0.12.0 // indirect
|
2023-02-15 16:53:29 +03:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2020-12-08 18:23:35 +03:00
|
|
|
)
|