rustfmt.toml 561 B

1234567891011121314151617181920212223
  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 = "Visual"
  11. imports_layout = "Mixed"
  12. reorder_imports = false
  13. fn_args_density = "Tall"
  14. brace_style = "SameLineWhere"
  15. trailing_comma = "Vertical"
  16. blank_lines_upper_bound = 1
  17. blank_lines_lower_bound = 0
  18. force_explicit_abi = true
  19. disable_all_formatting = false
  20. skip_children = false
  21. hide_parse_errors = false
  22. report_todo = "Never"
  23. report_fixme = "Never"