We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d60a61 commit 17bad2bCopy full SHA for 17bad2b
Configurations.md
@@ -1617,15 +1617,15 @@ pub enum Foo {}
1617
1618
## `imports_granularity`
1619
1620
-Merge together related imports based on their paths.
+How imports should be grouped into `use` statements. Imports will be merged or split to the configured level of granularity.
1621
1622
- **Default value**: `Preserve`
1623
- **Possible values**: `Preserve`, `Crate`, `Module`
1624
- **Stable**: No
1625
1626
#### `Preserve` (default):
1627
1628
-Do not perform any merging and preserve the original structure written by the developer.
+Do not change the granularity of any imports and preserve the original structure written by the developer.
1629
1630
```rust
1631
use foo::b;
0 commit comments