rustfmt.toml 505 B

12345678910111213
  1. # Unstable options are commented out below. We should re-enable them once they are stabilized.
  2. # Merge similar crates together to avoid multiple use statements.
  3. # imports_granularity = "Crate"
  4. # Consistency in formatting makes tool based searching/editing better.
  5. # empty_item_single_line = false
  6. # Easier editing when arbitrary mixed use statements do not collapse.
  7. # imports_layout = "Vertical"
  8. # Default rustfmt formatting of match arms with branches is awful.
  9. match_arm_leading_pipes = "Preserve"