From b5471212cfca091254b300b189c6aef20f1cee4f Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Sat, 3 Mar 2018 21:26:13 -0500 Subject: [PATCH] dont import metalinter --- tools/main.go | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/tools/main.go b/tools/main.go index b891a9c755..104268010a 100644 --- a/tools/main.go +++ b/tools/main.go @@ -1,12 +1,11 @@ package main -import ( - // Include dependencies here so dep picks them up - // and installs sub-dependencies. +// Include dependencies here so dep picks them up +// and installs sub-dependencies. - // TODO: Ideally this gets auto-imported on dep update. - // Any way to make that happen? - _ "github.com/alecthomas/gometalinter" -) +// TODO: Ideally this gets auto-imported on dep update. +// Any way to make that happen? +// NOTE: problems with this import because its a main not a lib +// _ "github.com/alecthomas/gometalinter" func main() {}