https://github.com/tendermint/tendermint
Raw File
Tip revision: 1969ad24f4c5b6fc7f00e4e60bef1d3236af42fa authored by William Banfield on 13 July 2022, 21:48:50 UTC
remove explicit 0
Tip revision: 1969ad2
tools.go
//go:build tools
// +build tools

// This file uses the recommended method for tracking developer tools in a go module.
//
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module

package tools

import (
	_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
	_ "github.com/vektra/mockery/v2"
)
back to top