2
0

rustfmt.toml 574 B

123456789101112131415161718192021222324
  1. max_width = 100
  2. hard_tabs = false
  3. tab_spaces = 4
  4. newline_style = "Unix"
  5. indent_style = "Block"
  6. format_strings = false
  7. empty_item_single_line = true
  8. fn_single_line = false
  9. where_single_line = false
  10. imports_indent = "Block"
  11. imports_layout = "Mixed"
  12. fn_args_density = "Tall"
  13. brace_style = "SameLineWhere"
  14. trailing_comma = "Vertical"
  15. blank_lines_upper_bound = 1
  16. blank_lines_lower_bound = 0
  17. force_explicit_abi = true
  18. disable_all_formatting = false
  19. skip_children = false
  20. hide_parse_errors = false
  21. report_todo = "Never"
  22. report_fixme = "Never"
  23. edition = "2018"
  24. merge_imports = true