Open
Description
With:
hard_tabs = true
braces_style = "AlwaysNextLine"
control_brace_style = "AlwaysNextLine"
group_imports = "StdExternalCrate"
imports_granularity = "One"
imports_indent = "Block"
imports_layout = "Vertical"
indent_style = "Block"
newline_style = "Unix"
trailing_comma = "Vertical"
Current output:
use {
colored::{
ColoredString,
Colorize,
},
std::{
cmp::Ordering,
fmt::{
Display,
Formatter,
},
io::{
Read,
Write,
},
ops::{
ControlFlow,
RangeInclusive,
},
result::Result,
},
};
Expected output:
use
{
colored::
{
ColoredString,
Colorize,
},
std::
{
cmp::Ordering,
fmt::
{
Display,
Formatter,
},
io::
{
Read,
Write,
},
ops::
{
ControlFlow,
RangeInclusive,
},
result::Result,
},
};