We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
help
1 parent 9084609 commit bfc987eCopy full SHA for bfc987e
Makefile
@@ -1,16 +1,23 @@
1
-fmt: FORCE
+.DEFAULT_GOAL := help
2
+
3
+help:
4
+ @cat $(MAKEFILE_LIST) | \
5
+ perl -ne 'print if /^\w+.*##/;' | \
6
+ perl -pe 's/(.*):.*##\s*/sprintf("%-20s",$$1)/eg;'
7
8
+fmt: FORCE ## Format code
9
@deno fmt
10
-fmt-check: FORCE
11
+fmt-check: FORCE ## Format check
12
@deno fmt --check
13
-lint: FORCE
14
+lint: FORCE ## Lint code
15
@deno lint
16
-type-check: FORCE
17
+type-check: FORCE ## Type check
18
@deno test --unstable --no-run **/*.ts
19
-test: FORCE
20
+test: FORCE ## Test
21
@deno test --unstable -A
22
23
FORCE:
0 commit comments