From 05d4233d3f83337406f89eff238a2544456a2ef5 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Thu, 16 Jan 2025 08:25:16 +0000 Subject: [PATCH] build: add fmt recipe to justfile --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index b5f2749..223b3a8 100644 --- a/justfile +++ b/justfile @@ -12,5 +12,8 @@ clippy: build run: build docker run --rm -v $PWD:/app/ {{ image }} cargo run +fmt: build + docker run --rm -v $PWD:/app/ {{ image }} cargo fmt + shell: build docker run --rm -it -v $PWD:/app/ {{ image }} bash