Skip to content

Files

Latest commit

 

History

History
15 lines (8 loc) · 572 Bytes

sort-named-imports.md

File metadata and controls

15 lines (8 loc) · 572 Bytes

Pattern: Unsorted names imports

Issue: -

Description

Enforce sorted named imports.

Sorting named imports promotes a standardized ordering, making it easier for developers to navigate and understand import statements.

This rule ensures that named imports are consistently organized, enhancing the readability and maintainability of the code. By keeping imports sorted, developers can quickly locate necessary modules and maintain a clean code structure.

Further Reading