rustfmt.toml 468 B

1234567891011121314151617
  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. reorder_impl_items = true
  10. use_field_init_shorthand = true
  11. use_try_shorthand = true
  12. normalize_doc_attributes = true
  13. report_todo = "Always"
  14. report_fixme = "Always"
  15. imports_layout = "HorizontalVertical"
  16. enum_discrim_align_threshold = 20
  17. edition = "2018"