rustfmt.toml 488 B

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