rustfmt-nightly 1.1.1

Tool to find and fix Rust formatting issues
Documentation
1
2
3
4
5
6
7
8
9
// rustfmt-reorder_imports: true

// Ensure that a use at the start of an inline module is correctly formatted.
mod foo {use bar;}

// Ensure that an indented `use` gets the correct indentation.
mod foo {
        use bar;
}