From 2569c6332fb1f9b695b984f2a8f34eaee3f81d89 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Sun, 9 Oct 2022 18:26:01 +0200 Subject: Added eslint validation --- GNUmakefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 GNUmakefile (limited to 'GNUmakefile') diff --git a/GNUmakefile b/GNUmakefile new file mode 100644 index 0000000..bb10536 --- /dev/null +++ b/GNUmakefile @@ -0,0 +1,18 @@ +SHELL:=bash + +.PHONY: check +check: ## make check # Check syntax of eventline jobs + eslint index.js + +.PHONY: init +init: ## make init # initialize project dependencies + npm install eslint + +.PHONY: serve +serve: ## make serve # run a python web server + python -m http.server 8000 + +help: + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' + +.DEFAULT_GOAL := help -- cgit v1.2.3