rustfmt.toml 445 B

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