-
-
Notifications
You must be signed in to change notification settings - Fork 250
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(python): Adds Imports Sorting with isort to the Python Pack #551
Conversation
It's a common way to sort Python imports on save. `ruff_lsp` could be used to sort the imports the exact same way through code actions, but I'm not sure how to do that here on save.
Review ChecklistDoes this PR follow the [Contribution Guidelines](development guidelines)? Following is a partial checklist: Proper conventional commit scoping:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add isort to the readme as well.
@Uzaaft just updated the readme ✔️ |
📑 Description
It's a common way to sort Python imports on save.
ruff_lsp
could be used to sort the imports the exact same way through code actions, but I'm not sure how to do that on file save.