summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..675178e
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+fmtcheck:
+ "$(CURDIR)/scripts/gofmtcheck.sh"
+
+fmtfix:
+ gofmt -w ./
+
+vetcheck:
+ go vet ./...
+
+copyrightcheck:
+ go run github.com/hashicorp/copywrite@latest headers --plan
+
+copyrightfix:
+ go run github.com/hashicorp/copywrite@latest headers
+
+check: copyrightcheck vetcheck fmtcheck
+
+fix: copyrightfix fmtfix