Files
continuwuity/rustfmt.toml
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
846 B
TOML
Raw Normal View History

2024-07-09 17:23:00 +00:00
array_width = 80
chain_width = 60
comment_width = 80
2024-03-05 19:48:54 -05:00
condense_wildcard_suffixes = true
edition = "2024"
2024-07-09 17:23:00 +00:00
fn_call_width = 80
fn_single_line = true
2024-03-05 19:48:54 -05:00
format_code_in_doc_comments = true
format_macro_bodies = true
format_macro_matchers = true
format_strings = true
2024-07-09 17:23:00 +00:00
group_imports = "StdExternalCrate"
2024-03-05 19:48:54 -05:00
hard_tabs = true
2024-07-09 17:23:00 +00:00
hex_literal_case = "Upper"
2024-03-05 19:48:54 -05:00
imports_granularity = "Crate"
match_arm_blocks = false
match_arm_leading_pipes = "Always"
2024-07-09 17:23:00 +00:00
match_block_trailing_comma = true
max_width = 98
2024-07-09 17:23:00 +00:00
newline_style = "Unix"
2024-03-05 19:48:54 -05:00
normalize_comments = false
overflow_delimited_expr = true
2024-03-05 19:48:54 -05:00
reorder_impl_items = true
reorder_imports = true
single_line_if_else_max_width = 60
single_line_let_else_max_width = 80
struct_lit_width = 40
2024-07-09 17:23:00 +00:00
tab_spaces = 4
unstable_features = true
2024-03-05 19:48:54 -05:00
use_field_init_shorthand = true
use_small_heuristics = "Off"
2024-03-25 17:05:11 -04:00
use_try_shorthand = true
2024-07-09 17:23:00 +00:00
wrap_comments = true