- commit
- b4c8714
- parent
- f05631e
- author
- Eric Bower
- date
- 2022-12-14 21:35:05 +0000 UTC
add make rules for lint and format
1 files changed,
+8,
-0
M
Makefile
M
Makefile
+8,
-0
1@@ -49,3 +49,11 @@ upload:
2
3 deploy: scrape build upload
4 .PHONY: deploy
5+
6+format:
7+ deno fmt
8+.PHONY: format
9+
10+test:
11+ deno lint
12+.PHONY: test