Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Naartti/9b74afa477fb27014cfd6531a0164bbe to your computer and use it in GitHub Desktop.
Save Naartti/9b74afa477fb27014cfd6531a0164bbe to your computer and use it in GitHub Desktop.
Base VS Code settings for typed Python
{
"editor.formatOnSave": true,
"editor.tabSize": 4,
"python.pythonPath": "${workspaceFolder}/venv/bin/python3.9",
"python.analysis.extraPaths": [
"${workspaceFolder}/src",
],
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "basic"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment