Skip to content

Files

Latest commit

 

History

History
17 lines (9 loc) · 603 Bytes

sort-imports.md

File metadata and controls

17 lines (9 loc) · 603 Bytes

Pattern: Unsorted imports

Issue: -

Description

Enforce sorted imports.

Maintaining a consistent and sorted order of imports is crucial for improving code readability and organization.

This rule ensures that imports are easily locatable and quickly scannable, especially in modules with numerous import statements.

By reducing the likelihood of errors caused by import conflicts and providing a clear structure, this rule helps developers manage imports efficiently and maintain a tidy codebase.

Further Reading