rustfmt.toml 442 B

12345678910111213141516
  1. # https://rust-lang.github.io/rustfmt/?version=master&search=
  2. max_width = 120
  3. tab_spaces = 4
  4. fn_single_line = true
  5. match_block_trailing_comma = true
  6. normalize_comments = true
  7. wrap_comments = true
  8. merge_imports = true
  9. use_field_init_shorthand = true
  10. use_try_shorthand = true
  11. normalize_doc_attributes = true
  12. report_todo = "Always"
  13. report_fixme = "Always"
  14. imports_layout = "HorizontalVertical"
  15. enum_discrim_align_threshold = 20
  16. edition = "2018"