From 9979e562b29878057fab19e0775455908d989ef3 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Thu, 4 Dec 2025 13:53:15 +0100 Subject: [PATCH] docs: adjust contributing.md: fix missing --all Unrelated but necessary to also always format code for all architectures and all features. Signed-off-by: Philipp Schuster On-behalf-of: SAP philipp.schuster@sap.com --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index db1b4bfed..c907d29ee 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -48,7 +48,7 @@ have specific features that you regularly develop against. ```sh #!/bin/sh -cargo +nightly fmt -- --check || exit 1 +cargo +nightly fmt --all -- --check || exit 1 cargo check --locked --all --all-targets --tests || exit 1 cargo clippy --locked --all --all-targets --tests -- -D warnings || exit 1 ```