/ .rustfmt.toml
.rustfmt.toml
1 edition = "2015" 2 fn_args_layout = "Vertical" 3 match_arm_leading_pipes = "Preserve" 4 match_block_trailing_comma = true 5 max_width = 98 6 reorder_modules = false 7 use_small_heuristics = "Max" 8 9 unstable_features = true 10 blank_lines_upper_bound = 2 11 brace_style = "AlwaysNextLine" 12 control_brace_style = "ClosingNextLine" 13 combine_control_expr = false 14 comment_width = 98 15 enum_discrim_align_threshold = 60 16 error_on_line_overflow = true 17 error_on_unformatted = true 18 format_strings = true 19 format_macro_matchers = true 20 group_imports = "StdExternalCrate" 21 imports_granularity = "Module" 22 match_arm_blocks = false 23 normalize_doc_attributes = true 24 overflow_delimited_expr = true 25 reorder_impl_items = true 26 spaces_around_ranges = true 27 struct_field_align_threshold = 40 28 version = "Two" 29 where_single_line = true 30 wrap_comments = true