From 930a5b68e2f972a3fcd0efffb4589c6fd9153794 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20K=C3=B6hl?= Date: Mon, 22 Jan 2024 11:18:04 +0100 Subject: [PATCH] add project automation --- justfile | 15 +++++++++++++++ xfile | 1 + 2 files changed, 16 insertions(+) create mode 100644 justfile create mode 100644 xfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..c03517d --- /dev/null +++ b/justfile @@ -0,0 +1,15 @@ +# Print available recipes +help: + @just --list + +# Format code +fmt: + cargo +nightly fmt + +# Lint code +lint: + cargo clippy + +# Install development tools +install: + cargo install mdbook x-launcher diff --git a/xfile b/xfile new file mode 100644 index 0000000..a8f538a --- /dev/null +++ b/xfile @@ -0,0 +1 @@ +!just \ No newline at end of file