aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoe Richey joerichey@google.com <joerichey@google.com>2018-08-30 03:55:16 -0700
committerJoe Richey joerichey@google.com <joerichey@google.com>2018-08-30 03:55:16 -0700
commita7118153aa7c9392eeeddf1377301e05d68fcacb (patch)
treeb7856c5c6e0070f01f0f26b525f11ab8dd2d7f97 /Makefile
parent3c4664d603fb288b70938a00b05437ce8b2d0e64 (diff)
Fix golint to not need a special fork
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1b60fe0..9e9e1cf 100644
--- a/Makefile
+++ b/Makefile
@@ -100,7 +100,7 @@ format: $(BIN)/goimports
lint: $(BIN)/golint $(BIN)/megacheck
go vet ./...
- golint -set_exit_status ./...
+ go list ./... | xargs -L1 golint -set_exit_status
megacheck -unused.exported -simple.exit-non-zero ./...
clean: