mirror of
https://github.com/containers/podman.git
synced 2025-09-19 23:03:16 +08:00

golangci-lint v2 introduced a new command, fmt, which runs configured formatters (see formatters in .golangci.yml). Use this for generated files. Drop separate goimports binary. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
13 lines
253 B
Go
13 lines
253 B
Go
//go:build tools
|
|
|
|
package tools
|
|
|
|
// Importing the packages here will allow to vendor those via
|
|
// `go mod vendor`.
|
|
|
|
import (
|
|
_ "github.com/cpuguy83/go-md2man/v2"
|
|
_ "github.com/go-swagger/go-swagger/cmd/swagger"
|
|
_ "github.com/vbatts/git-validation"
|
|
)
|