summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Maiocchi <dmaiocchi@suse.com>2017-11-11 13:11:46 +0100
committerDario Maiocchi <dmaiocchi@suse.com>2017-11-13 17:53:19 +0100
commit6cca5196b383ecfbdf1162e1c3965f610bb3a95e (patch)
tree246fc31e929ffb1d6f62ef035a2fe909df44ec25
parentc03e255db5dadbcb63573e2015fff4aa57152e8e (diff)
downloadterraform-provider-libvirt-6cca5196b383ecfbdf1162e1c3965f610bb3a95e.tar
terraform-provider-libvirt-6cca5196b383ecfbdf1162e1c3965f610bb3a95e.tar.gz
Add golint to makefile
It can be mandatory later with govet when all issues are fixed
-rw-r--r--GNUmakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index ca8c718f..f5c3f4e2 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -14,7 +14,9 @@ vet:
exit 1; \
fi
+golint:
+ golint ./libvirt
gofmtcheck:
bash travis/gofmtcheck.sh
-.PHONY: build testacc vet fmt
+.PHONY: build testacc vet fmt golint