-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb89377
commit 1bd403c
Showing
4 changed files
with
47 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,19 +9,19 @@ help: | |
perl -pe 's/(.*):.*##\s*/sprintf("%-20s",$$1)/eg;' | ||
|
||
fmt: FORCE ## Format code | ||
@deno fmt --ignore=.deno | ||
@deno fmt | ||
|
||
fmt-check: FORCE ## Format check | ||
@deno fmt --check --ignore=.deno | ||
@deno fmt --check | ||
|
||
lint: FORCE ## Lint code | ||
@deno lint --ignore=.deno | ||
@deno lint | ||
|
||
type-check: FORCE ## Type check | ||
@deno test --unstable --no-run ${TARGETS} | ||
@deno test --no-run ${TARGETS} | ||
|
||
test: FORCE ## Test | ||
@deno test --unstable -A --no-check --jobs | ||
@deno test -A --no-check | ||
|
||
deps: FORCE ## Update dependencies | ||
@deno run -A https://deno.land/x/[email protected]/main.ts ${TARGETS} | ||
|