Last active
April 18, 2021 11:11
-
-
Save Naartti/9b74afa477fb27014cfd6531a0164bbe to your computer and use it in GitHub Desktop.
Base VS Code settings for typed Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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