aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-05 15:54:05 -0700
committerFuwn <[email protected]>2021-05-05 15:54:05 -0700
commit9d00bd6b0a25b51ff84ff2e32cb4cfe7729f4074 (patch)
tree2ca8a805c6009839170d18af013101d237e37365
parentfeat(prompt): history builtin (diff)
downloadwhirl-9d00bd6b0a25b51ff84ff2e32cb4cfe7729f4074.tar.xz
whirl-9d00bd6b0a25b51ff84ff2e32cb4cfe7729f4074.zip
chore(make): new task, basically checkf except it also executes clippy
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e15c2f3..e45e8a8 100644
--- a/Makefile
+++ b/Makefile
@@ -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)