diff options
| author | Fuwn <[email protected]> | 2021-05-05 15:54:05 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-05 15:54:05 -0700 |
| commit | 9d00bd6b0a25b51ff84ff2e32cb4cfe7729f4074 (patch) | |
| tree | 2ca8a805c6009839170d18af013101d237e37365 | |
| parent | feat(prompt): history builtin (diff) | |
| download | whirl-9d00bd6b0a25b51ff84ff2e32cb4cfe7729f4074.tar.xz whirl-9d00bd6b0a25b51ff84ff2e32cb4cfe7729f4074.zip | |
chore(make): new task, basically checkf except it also executes clippy
| -rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -20,11 +20,16 @@ fmt: check: cargo check +clippy: + cargo clippy + # ------------- # | Executors | # ------------- checkf: fmt check +checkfc: fmt check clippy + help: checkf cargo run -- $(FLAGS) help $(ARGS) |