Skip to content

Conversation

@A4-Tacks
Copy link
Member

Example

mod tests {
    use foo$0::bar;
    use foo::baz;
    fn feature() {}
}

Before this PR

mod tests {
    use foo::{bar, baz};
        fn feature() {}
}

After this PR

mod tests {
    use foo::{bar, baz};
    fn feature() {}
}

@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Dec 22, 2025
@A4-Tacks A4-Tacks marked this pull request as draft December 22, 2025 07:39
@rustbot rustbot removed the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Dec 22, 2025
Example
---
```rust
mod tests {
    use foo$0::bar;
    use foo::baz;
    fn feature() {}
}
```

**Before this PR**

```rust
mod tests {
    use foo::{bar, baz};
        fn feature() {}
}
```

**After this PR**

```rust
mod tests {
    use foo::{bar, baz};
    fn feature() {}
}
```
@A4-Tacks A4-Tacks force-pushed the merge-imports-indent branch from 0d1109a to 7405f16 Compare December 22, 2025 10:08
@A4-Tacks A4-Tacks marked this pull request as ready for review December 22, 2025 10:09
@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Dec 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

S-waiting-on-review Status: Awaiting review from the assignee but also interested parties.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants