From 173e8ae2f78d56f1b248c02be52d118fbe5c20fa Mon Sep 17 00:00:00 2001 From: Chad Metcalf Date: Fri, 19 Mar 2021 23:52:56 -0700 Subject: [PATCH] Adding a helper makefile. Signed-off-by: Chad Metcalf --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ad24cda --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: lint format check + +lint: + npm run-script lint + +format: + npm run-script format + +check: + npm run-script format-check