aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-14 10:16:31 +0000
committerFuwn <[email protected]>2024-09-14 10:16:31 +0000
commitfd43d41deaecded696c2e37468d40e6ad9ce596f (patch)
tree0496be385408059292f94910d78bf8da750a0ee7 /justfile
parentchore(nix): flake-based development shell (diff)
downloadseptember-fd43d41deaecded696c2e37468d40e6ad9ce596f.tar.xz
september-fd43d41deaecded696c2e37468d40e6ad9ce596f.zip
chore: move development shell to just
Diffstat (limited to 'justfile')
-rw-r--r--justfile20
1 files changed, 20 insertions, 0 deletions
diff --git a/justfile b/justfile
new file mode 100644
index 0000000..1ffc866
--- /dev/null
+++ b/justfile
@@ -0,0 +1,20 @@
+default:
+ @just --list
+
+fmt:
+ cargo fmt
+
+check:
+ cargo check --all-features
+
+checkf:
+ @just fmt
+ @just check
+
+checkfc:
+ @just checkf
+ cargo clippy
+
+run:
+ @just checkfc
+ cargo run