From 0830aaa128fd8e3e9ec9fae876bf194b69ac5e98 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sun, 5 Apr 2026 22:24:38 +0300 Subject: [PATCH] meta: look for zig files only in libs/ The core game is, and will remain, C Signed-off-by: NotAShelf Change-Id: I568a9d71f55774e195eaa3a75eff80136a6a6964 --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index c70d068..a425cb3 100644 --- a/Justfile +++ b/Justfile @@ -13,7 +13,7 @@ clean: # Format all C source files fmt: clang-format -i src/*.c src/*.h - zig fmt **/*.zig + zig fmt libs/combat/*.zig # Check formatting fmt-check: