rustfmt.toml 776 B

1234567891011121314151617181920212223242526272829
  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_extern_crates = true
  13. reorder_extern_crates_in_group = true
  14. reorder_imports = false
  15. reorder_imported_names = true
  16. spaces_within_parens_and_brackets = false
  17. remove_blank_lines_at_start_or_end_of_block = true
  18. fn_args_density = "Tall"
  19. brace_style = "SameLineWhere"
  20. trailing_comma = "Vertical"
  21. blank_lines_upper_bound = 1
  22. blank_lines_lower_bound = 0
  23. force_explicit_abi = true
  24. write_mode = "Overwrite"
  25. disable_all_formatting = false
  26. skip_children = false
  27. hide_parse_errors = false
  28. report_todo = "Never"
  29. report_fixme = "Never"