Installation:
Extensions:
Python- Python extension for Visual Studio Code.Jupyter- Jupyter notebook support.Black Formatter- Formatting support for Python files using Black.Ruff- A Visual Studio Code extension with support for the Ruff linter.autoDocstring- Generates python docstrings automatically.Even Better TOML- Needed for building packages and project config setups.Code Spell Checker- A basic spell checker that works well with code and documents.CodeSnap- Take beautiful screenshots of your code.
Settings:
{
"[python]": {
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll": true
},
"editor.defaultFormatter": "ms-python.black-formatter"
},
}