mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-18 21:11:50 +03:00
ac5a96fada
Squashed commit of the following: commit f920006277f39b74c803139af2a9039aa45effae Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Nov 8 16:14:41 2024 +0300 all: fix pre-commit; upd dnsproxy commit391f79b244
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Nov 7 18:53:28 2024 +0300 scripts: imp install commit35324db80b
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Nov 7 18:20:23 2024 +0300 all: imp docs, scripts commitd2724cfaef
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Nov 7 17:26:23 2024 +0300 all: upd go, deps, tools, scripts
24 lines
832 B
Go
24 lines
832 B
Go
//go:build tools
|
|
|
|
// Package tools and its main module are a nested internal module containing our
|
|
// development tool dependencies.
|
|
//
|
|
// See https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module.
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/fzipp/gocyclo/cmd/gocyclo"
|
|
_ "github.com/golangci/misspell/cmd/misspell"
|
|
_ "github.com/gordonklaus/ineffassign"
|
|
_ "github.com/jstemmer/go-junit-report/v2"
|
|
_ "github.com/kisielk/errcheck"
|
|
_ "github.com/securego/gosec/v2/cmd/gosec"
|
|
_ "github.com/uudashr/gocognit/cmd/gocognit"
|
|
_ "golang.org/x/tools/go/analysis/passes/nilness/cmd/nilness"
|
|
_ "golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow"
|
|
_ "golang.org/x/vuln/cmd/govulncheck"
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
|
_ "mvdan.cc/gofumpt"
|
|
_ "mvdan.cc/sh/v3/cmd/shfmt"
|
|
_ "mvdan.cc/unparam"
|
|
)
|