1 dépôt
Tools that specifically verify the ordering and grouping of import statements without modifying files.
Distinct from Python Development Tools: Focuses on import-specific linting rather than general Python development utility.
Explore 1 awesome GitHub repository matching development tools & productivity · Import Order Linters. Refine with filters or upvote what's useful.
isort is a Python import sorter and code formatter that organizes import statements into alphabetical groups and sections. It functions as both a utility to automatically rearrange imports for a consistent layout and as a linting tool to verify if code follows specific ordering rules. The project provides configurable layout settings for indentation, wrapping modes, and section ordering to ensure compliance with project style guides and PEP 8. It allows for the exclusion of specific lines or files through inline comments and docstrings. The tool integrates into development workflows via IDE
Verifies if Python import statements follow defined ordering rules and reports discrepancies.