From 867b00279aa0d96a1d17090267b05b8c10b67060 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 5 Jul 2026 19:00:38 +0100 Subject: [PATCH] Add justfile --- justfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..bda2788 --- /dev/null +++ b/justfile @@ -0,0 +1,16 @@ +# Prism — Build tasks +# See https://just.systems + +default: build + +# Build the project +build: + @echo "TODO: implement build" + +# Run linter / typecheck +lint: + @echo "TODO: implement linter" + +# Run tests +test: + @echo "TODO: implement tests"