A cli program to easily handle .gitignore files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.0 KiB

  1. # Version 0.1
  2. # Always nice to have a way to gather TODOs and FIXMEs quickly
  3. report_todo = "Always"
  4. report_fixme = "Always"
  5. # I was one of the proponents in the RFC discussion
  6. use_try_shorthand = true
  7. # Try to wrestle rustfmt as close as possible to the style I habitually use
  8. # and rigorously enforce by using `git gui` to only commit rustfmt changes
  9. # I approve of.
  10. brace_style = "PreferSameLine"
  11. comment_width = 99
  12. enum_discrim_align_threshold = 10
  13. format_strings = true
  14. fn_args_density = "Compressed"
  15. fn_single_line = true
  16. imports_indent = "Visual"
  17. match_block_trailing_comma = true
  18. normalize_doc_attributes = true
  19. overflow_delimited_expr = true
  20. reorder_impl_items = true
  21. struct_field_align_threshold = 10
  22. use_field_init_shorthand = true
  23. use_small_heuristics = "Max"
  24. where_single_line = true
  25. wrap_comments = true
  26. # I happen to like /* this */ for multi-line comments, thank you very much
  27. normalize_comments = false
  28. # -----------------------------------------------------------------------------
  29. # Used for debugging rustfmt configurations
  30. #write_mode = "Diff"