We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Update VS Code Docs for Python for the June release. Python VS Code extension will be adding the ability to sort imports as is possible in TypeScript and JavaScript, see here https://code.visualstudio.com/updates/v1_23#_javascript-and-typescript-organize-imports
To enable this in Python one needs to add the following setting into their user or workspace settings (settings.json):
user
workspace
settings.json
"[python]": { "editor.codeActionsOnSave": { "source.organizeImports": true } }
Feature supported added in PR microsoft/vscode-python#1926
The text was updated successfully, but these errors were encountered:
Add sort import on save
97aa798
Addresses #1676
Cool stuff; I didn't know about using scoped settings like that. :)
Sorry, something went wrong.
kraigb
No branches or pull requests
Update VS Code Docs for Python for the June release.
Python VS Code extension will be adding the ability to sort imports as is possible in TypeScript and JavaScript, see here https://code.visualstudio.com/updates/v1_23#_javascript-and-typescript-organize-imports
To enable this in Python one needs to add the following setting into their
user
orworkspace
settings (settings.json
):Feature supported added in PR microsoft/vscode-python#1926
The text was updated successfully, but these errors were encountered: