You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🎨 Reorganize import statements for consistent ordering
Normalize import statement ordering across the codebase
This stylistic change ensures a consistent pattern for import statements
throughout the project by:
- Grouping related imports together in a standardized order
- Placing crate imports before external dependencies in many modules
- Organizing alphabetically within import groups where appropriate
- Standardizing newline usage between import sections
These changes are purely cosmetic and don't alter functionality, but
improve code readability and maintainability by following Rust best
practices for import organization.
0 commit comments