From 205af9b107d9bb79752675b417a164cc06075d3c Mon Sep 17 00:00:00 2001 From: Yuki Kishimoto Date: Wed, 10 Apr 2024 15:57:36 +0200 Subject: [PATCH] Update `.rustfmt.toml` Signed-off-by: Yuki Kishimoto --- .rustfmt.toml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.rustfmt.toml b/.rustfmt.toml index 35cd2821..547421e7 100644 --- a/.rustfmt.toml +++ b/.rustfmt.toml @@ -1,5 +1,9 @@ -group_imports = "StdExternalCrate" -wrap_comments = true -format_code_in_doc_comments = true +tab_spaces = 4 +newline_style = "Auto" +reorder_imports = true +reorder_modules = true +reorder_impl_items = false +indent_style = "Block" +normalize_comments = false imports_granularity = "Module" -edition = "2021" +group_imports = "StdExternalCrate"