Lynne
8a7cbca461
by setting `group_imports = "StdExternalCrate"` in `rustfmt.toml`, cargo fmt/rustfmt rearranges your use statements into three groups: - std/core/alloc, - followed by external crates, - followed by self/super/crate
6 lines
No EOL
127 B
TOML
6 lines
No EOL
127 B
TOML
max_width = 120
|
|
fn_single_line = true
|
|
hard_tabs = true
|
|
tab_spaces = 2
|
|
newline_style = "Unix"
|
|
group_imports = "StdExternalCrate" |