Codebase list fscrypt / ddf9e95d-f555-4fa8-9283-bfcae73fa7b9/main tools.go
ddf9e95d-f555-4fa8-9283-bfcae73fa7b9/main

Tree @ddf9e95d-f555-4fa8-9283-bfcae73fa7b9/main (Download .tar.gz)

tools.go @ddf9e95d-f555-4fa8-9283-bfcae73fa7b9/mainraw · history · blame

// +build tools
// Never compiled, just used to manage tool dependencies

package tools

import (
	_ "github.com/client9/misspell/cmd/misspell"
	_ "github.com/golang/protobuf/protoc-gen-go"
	_ "github.com/wadey/gocovmerge"
	_ "golang.org/x/lint/golint"
	_ "golang.org/x/tools/cmd/goimports"
	_ "honnef.co/go/tools/cmd/staticcheck"
)