Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tools.go « workhorse - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94b487844e15ff520cce4dfe71b425a29e96d4ae (plain)
1
2
3
4
5
6
7
8
9
10
//go:build tools
// +build tools

package main

import (
	_ "golang.org/x/lint/golint"
	_ "golang.org/x/tools/cmd/goimports"
	_ "honnef.co/go/tools/cmd/staticcheck"
)