Skip to content

Commit 2c70167

Browse files
authored
Rollup merge of #123344 - pietroalbini:pa-unused-imports, r=Nilstrieb
Remove braces when fixing a nested use tree into a single item [Back in 2019](#56645) I added rustfix support for the `unused_imports` lint, to automatically remove them when running `cargo fix`. For the most part this worked great, but when removing all but one childs of a nested use tree it turned `use foo::{Unused, Used}` into `use foo::{Used}`. This is slightly annoying, because it then requires you to run `rustfmt` to get `use foo::Used`. This PR automatically removes braces and the surrouding whitespace when all but one child of a nested use tree are unused. To get it done I had to add the span of the nested use tree to the AST, and refactor a bit the code I wrote back then. A thing I noticed is, there doesn't seem to be any `//@ run-rustfix` test for fixing the `unused_imports` lint. I created a test in `tests/suggestions` (is that the right directory?) that for now tests just what I added in the PR. I can followup in a separate PR to add more tests for fixing `unused_lints`. This PR is best reviewed commit-by-commit.
2 parents 27d320d + afa482e commit 2c70167

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/imports.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,9 @@ impl UseTree {
458458
version,
459459
});
460460
}
461-
UseTreeKind::Nested(ref list) => {
461+
UseTreeKind::Nested {
462+
items: ref list, ..
463+
} => {
462464
// Extract comments between nested use items.
463465
// This needs to be done before sorting use items.
464466
let items = itemize_list(

0 commit comments

Comments
 (0)