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):
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
}
Feature supported added in PR microsoft/vscode-python#1926
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
userorworkspacesettings (settings.json):Feature supported added in PR microsoft/vscode-python#1926