mirror of https://github.com/perkeep/perkeep.git
11 lines
297 B
Go
11 lines
297 B
Go
//go:build deps
|
|
|
|
// Package deps depends on go modules in order to work around the fact that
|
|
// `go mod` subcommands will end up removing dependencies from the vendor directory
|
|
// if they are not referenced in any packages.
|
|
package deps
|
|
|
|
import (
|
|
_ "honnef.co/go/tools/cmd/staticcheck" // Lint
|
|
)
|