woodpecker/tools.go
Lukas c28f7cb29f
Add golangci-lint (#502)
Initial part of #435
2021-11-14 21:01:54 +01:00

11 lines
199 B
Go

//go:build tools
// +build tools
// this file make sure tools are vendored too
package tools
import (
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "github.com/rs/zerolog/cmd/lint"
)