mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +01:00
77d3a1ad4d
bump enumer to v1.1.1 bump golangci-lint to v1.17.1 no `go mod tidy` because 1.13 and 1.12 seem to alter each other's output fixes #112
12 lines
254 B
Go
12 lines
254 B
Go
// +build tools
|
|
|
|
package main
|
|
|
|
import (
|
|
_ "golang.org/x/tools/cmd/stringer"
|
|
_ "github.com/golang/protobuf/protoc-gen-go"
|
|
_ "github.com/alvaroloes/enumer"
|
|
_ "golang.org/x/tools/cmd/goimports"
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
)
|