rustfmt.toml 481 B

1234567891011121314151617
  1. # Merge all imports into a clean vertical list of module imports.
  2. imports_granularity = "One"
  3. group_imports = "One"
  4. imports_layout = "Vertical"
  5. # Better grep-ability.
  6. empty_item_single_line = false
  7. # Consistent pipe layout.
  8. match_arm_leading_pipes = "Preserve"
  9. # Align Fields
  10. enum_discrim_align_threshold = 80
  11. struct_field_align_threshold = 80
  12. # Allow up to two blank lines for visual grouping.
  13. blank_lines_upper_bound = 2