sort rustfmt

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-07-09 17:23:00 +00:00 committed by strawberry
parent e482c0646f
commit 8ea2dccc9a
1 changed files with 14 additions and 15 deletions

View File

@ -1,28 +1,27 @@
edition = "2021" array_width = 80
chain_width = 60
comment_width = 80
condense_wildcard_suffixes = true condense_wildcard_suffixes = true
edition = "2021"
fn_call_width = 80
fn_params_layout = "Compressed"
fn_single_line = true
format_code_in_doc_comments = true format_code_in_doc_comments = true
format_macro_bodies = true format_macro_bodies = true
format_macro_matchers = true format_macro_matchers = true
format_strings = true format_strings = true
hex_literal_case = "Upper" group_imports = "StdExternalCrate"
max_width = 120
tab_spaces = 4
array_width = 80
comment_width = 80
wrap_comments = true
fn_params_layout = "Compressed"
fn_call_width = 80
fn_single_line = true
hard_tabs = true hard_tabs = true
match_block_trailing_comma = true hex_literal_case = "Upper"
imports_granularity = "Crate" imports_granularity = "Crate"
match_block_trailing_comma = true
max_width = 120
newline_style = "Unix"
normalize_comments = false normalize_comments = false
reorder_impl_items = true reorder_impl_items = true
reorder_imports = true reorder_imports = true
group_imports = "StdExternalCrate" tab_spaces = 4
newline_style = "Unix"
use_field_init_shorthand = true use_field_init_shorthand = true
use_small_heuristics = "Off" use_small_heuristics = "Off"
use_try_shorthand = true use_try_shorthand = true
chain_width = 60 wrap_comments = true