- Author
- Description
- Configuration
- To generate extensions list
- To install from the file
- VS Code: Extensions
- VS Code: Extensions with versions
On Windows:
code --list-extensions > vscode-extensions.list
On Ubuntu:
code --list-extensions > vscode-extensions.list
Note: In Powershell
On Windows
Get-Content vscode-extensions.list | ForEach-Object { code --install-extension $_ }
On Ubuntu:
cat vscode-extensions.list | xargs -L 1 code --install-extension
autoDocstring - Python Docstring Generator
-
These are configurations for the Python autoDocstring Generator extension.
-
More configurations for the docstringFormat can be found here
- It's a custom template for the PEP257 docstring format.
"auto-close-tag.enableAutoCloseTag": true,
"autoDocstring.customTemplatePath": "path/to/pep257.mustache",
"autoDocstring.docstringFormat": "pep257",
"autoDocstring.guessTypes":true,
"autoDocstring.includeName": false,
"autoDocstring.startOnNewLine": true,