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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'workhorse/tools.go')
-rw-r--r--workhorse/tools.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/workhorse/tools.go b/workhorse/tools.go
new file mode 100644
index 00000000000..9df59be349e
--- /dev/null
+++ b/workhorse/tools.go
@@ -0,0 +1,9 @@
+//+build tools
+
+package main
+
+import (
+ _ "golang.org/x/lint/golint"
+ _ "golang.org/x/tools/cmd/goimports"
+ _ "honnef.co/go/tools/cmd/staticcheck"
+)