diff options
Diffstat (limited to 'rustfmt.toml')
| -rw-r--r-- | rustfmt.toml | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/rustfmt.toml b/rustfmt.toml index 1dd4c90..c2072ca 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -1,30 +1,16 @@ -condense_wildcard_suffixes = true edition = "2021" -enum_discrim_align_threshold = 20 -# error_on_line_overflow = true -# error_on_unformatted = true +condense_wildcard_suffixes = true fn_single_line = true -force_multiline_blocks = true format_code_in_doc_comments = true -format_macro_matchers = true +doc_comment_code_block_width = 80 format_strings = true -imports_layout = "HorizontalVertical" -license_template_path = ".license_template" -max_width = 80 match_arm_blocks = false +max_width = 80 imports_granularity = "Crate" -newline_style = "Unix" normalize_comments = true normalize_doc_attributes = true reorder_impl_items = true group_imports = "StdExternalCrate" -reorder_modules = true -report_fixme = "Always" -# report_todo = "Always" -struct_field_align_threshold = 20 -struct_lit_single_line = false tab_spaces = 2 use_field_init_shorthand = true -use_try_shorthand = true -where_single_line = true wrap_comments = true |