From 136e5eed8ce9f6aaba7488f52f4b89f2d40e90c9 Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Wed, 4 Sep 2024 15:32:00 +0200 Subject: [PATCH] rustfmt: List experimental `group_imports` option MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This option is experimental, but can still be useful. While at it, sort the options alphabetically. Signed-off-by: Marc Hartmayer Reviewed-by: Steffen Eiden Signed-off-by: Jan Höppner --- .rustfmt.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.rustfmt.toml b/.rustfmt.toml index 3de5cc49..753e9b7d 100644 --- a/.rustfmt.toml +++ b/.rustfmt.toml @@ -5,8 +5,9 @@ newline_style = "Unix" # when they become stable. # # They are kept here since they are useful to run from time to time. -#format_code_in_doc_comments = true -#reorder_impl_items = true #comment_width = 100 -#wrap_comments = true +#format_code_in_doc_comments = true +#group_imports = "StdExternalCrate" #normalize_comments = true +#reorder_impl_items = true +#wrap_comments = true