From 75b1a0eb11eab4e9680528163000e8e0dcdb9096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jesu=CC=81s=20Pe=CC=81rez?= Date: Sun, 11 Jan 2026 21:51:51 +0000 Subject: [PATCH] chore: fix commit config --- justfiles/ci.just | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfiles/ci.just b/justfiles/ci.just index a1fd4fc..e2dccf8 100644 --- a/justfiles/ci.just +++ b/justfiles/ci.just @@ -41,7 +41,7 @@ ci-full: ci-lint-rust ci-fmt-toml ci-lint-toml ci-lint-nickel ci-lint-markdown c # Check Rust code formatting ci-fmt: @echo "📝 Checking Rust code formatting..." - cargo fmt --all -- --check + cargo +nightly fmt --all -- --check # Check TOML file formatting ci-fmt-toml: @echo "📝 Checking TOML formatting..." @@ -51,7 +51,7 @@ ci-fmt-toml: # Format all code fmt: @echo "🎨 Formatting code..." - cargo fmt --all + cargo +nightly fmt --all just fmt-toml # Format TOML files