From 37edb13e982d3d03770ff3876558fa90024b41ab Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Mon, 9 Mar 2020 14:39:26 +0100 Subject: [PATCH] add tools.go --- tools.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tools.go diff --git a/tools.go b/tools.go new file mode 100644 index 0000000000..bdb15091b1 --- /dev/null +++ b/tools.go @@ -0,0 +1,10 @@ +// +build tools + +package main + +import ( + _ "github.com/haya14busa/goverage" + _ "github.com/restic/calens" + _ "golang.org/x/lint/golint" + _ "honnef.co/go/tools/cmd/staticcheck" +)