rustfmt.toml 403 B

1234567891011
  1. # Merge similar crates together to avoid multiple use statements.
  2. imports_granularity = "Crate"
  3. # Consistency in formatting makes tool based searching/editing better.
  4. empty_item_single_line = false
  5. # Easier editing when arbitrary mixed use statements do not collapse.
  6. imports_layout = "Vertical"
  7. # Default rustfmt formatting of match arms with branches is awful.
  8. match_arm_leading_pipes = "Preserve"