rustfmt.toml 318 B

123456789101112
  1. # https://rust-lang.github.io/rustfmt/?version=master&search=
  2. max_width = 100
  3. tab_spaces = 2
  4. newline_style = "Auto"
  5. match_block_trailing_comma = true
  6. use_field_init_shorthand = true
  7. use_try_shorthand = true
  8. reorder_imports = true
  9. reorder_modules = true
  10. remove_nested_parens = true
  11. merge_derives = true
  12. edition = "2021"