From 8b2d18b3da35394c57853819fdfe9eb49c5c3d3b Mon Sep 17 00:00:00 2001 From: Ryan Walters Date: Wed, 10 Sep 2025 23:10:27 -0500 Subject: [PATCH] chore: add 'fix' just recipe, remove temp ignore lines --- .gitignore | 4 ---- Justfile | 5 +++++ 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 3c609e2..aff1d20 100644 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,3 @@ coverage.html # Profiling output flamegraph.svg /profile.* - -# temporary -assets/game/sound/*.wav -/*.py diff --git a/Justfile b/Justfile index fcf6626..6899699 100644 --- a/Justfile +++ b/Justfile @@ -37,3 +37,8 @@ samply: web *args: bun run web.build.ts {{args}}; caddy file-server --root dist + +# Run cargo fix +fix: + cargo fix --workspace --lib --allow-dirty + cargo fmt --all