From 44eae4e73081e79dafc2cc097f4c82ac9887843b Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Mon, 29 Sep 2025 16:36:24 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(config):=20add=20rustfmt-n?= =?UTF-8?q?ightly=20configuration=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - create rustfmt-nightly.toml to configure Rust formatting - set import grouping and granularity preferences - define max width and doc comment formatting rules --- rustfmt-nightly.toml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 rustfmt-nightly.toml diff --git a/rustfmt-nightly.toml b/rustfmt-nightly.toml new file mode 100644 index 0000000..dd56b9d --- /dev/null +++ b/rustfmt-nightly.toml @@ -0,0 +1,6 @@ +group_imports = "StdExternalCrate" +imports_granularity = "Crate" +max_width = 100 +format_code_in_doc_comments = true +doc_comment_code_block_width = 70 +wrap_comments = true