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

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessio Caiazza <acaiazza@gitlab.com>2019-09-17 18:15:31 +0300
committerNick Thomas <nick@gitlab.com>2019-09-17 18:15:31 +0300
commit001bbcc534a0d6cbb2446b3ad96f70f4e7bc4733 (patch)
treeb3f72b6224ea84dd94845ad8d6e9877230d36664 /tools.go
parentebfd0db7ad0e3ac781764694c1c07d1184ee4c0b (diff)
check go.mod go.sum
Diffstat (limited to 'tools.go')
-rw-r--r--tools.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools.go b/tools.go
new file mode 100644
index 00000000..902fac80
--- /dev/null
+++ b/tools.go
@@ -0,0 +1,10 @@
+//+build tools
+
+package main
+
+import (
+ _ "github.com/fzipp/gocyclo"
+ _ "github.com/wadey/gocovmerge"
+ _ "golang.org/x/lint/golint"
+ _ "golang.org/x/tools/cmd/goimports"
+)