78b52ec3e1
* Add config options for combinations of lines and items * Reordering of import lines implemented. * Changed nested matches to tuple pattern matching * Added ordering of path list items to the ordering of use declarations * Move `format_imports` and `format_import` methods to `imports.rs` * Add comment to explain how `use` declarations are split off while walking through a module * Change `ImportReordering` config option to separate boolean options
10 lines
245 B
Rust
10 lines
245 B
Rust
// rustfmt-reorder_imports: true
|
|
// rustfmt-reorder_imported_names: true
|
|
|
|
use std::cmp::{a, b, c, d};
|
|
use std::ddd::{a, b, c as g, d as p};
|
|
use std::ddd::aaa;
|
|
// This comment should stay with `use std::ddd:bbb;`
|
|
use std::ddd::bbb;
|
|
use std::str;
|