Skip to content

Instantly share code, notes, and snippets.

@prameshbajra
Created September 1, 2020 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prameshbajra/afe0adb135ffbfb543b458dbdab9893e to your computer and use it in GitHub Desktop.
Save prameshbajra/afe0adb135ffbfb543b458dbdab9893e to your computer and use it in GitHub Desktop.
VSCode workspace configuration for Python projects.
// 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