Created
September 1, 2020 08:10
-
-
Save prameshbajra/afe0adb135ffbfb543b458dbdab9893e to your computer and use it in GitHub Desktop.
VSCode workspace configuration for Python projects.
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
// This is configuration for VSCode such that the `go to definitions` work for the current project. | |
// Side Note: The PYTHONPATH for the current project was set. | |
{ | |
"python.formatting.provider": "autopep8", | |
"python.linting.enabled": true, | |
"python.pythonPath": "<VENV_PATH>\\Scripts\\python.exe", | |
"python.languageServer": "Microsoft" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment