From 8372d61be7a23e4e2394e8cfb80909688a229344 Mon Sep 17 00:00:00 2001 From: jif-oai Date: Wed, 7 Jan 2026 12:16:38 +0000 Subject: [PATCH] chore: silent just fmt (#8820) Done to avoid spammy warnings to end up in the model context without having to switch to nightly ``` Warning: can't set `imports_granularity = Item`, unstable features are only available in nightly channel. ``` --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 43ebae74aa..ef150fb266 100644 --- a/justfile +++ b/justfile @@ -25,7 +25,7 @@ app-server-test-client *args: # format code fmt: - cargo fmt -- --config imports_granularity=Item + cargo fmt -- --config imports_granularity=Item 2>/dev/null fix *args: cargo clippy --fix --all-features --tests --allow-dirty "$@"