Skip to content

Instantly share code, notes, and snippets.

@cleiveliu
Last active April 5, 2021 13:44
Show Gist options
  • Save cleiveliu/97db08a7b6db801dadf3d70885683bf7 to your computer and use it in GitHub Desktop.
Save cleiveliu/97db08a7b6db801dadf3d70885683bf7 to your computer and use it in GitHub Desktop.
vscode base settings, Python
{
"python.pythonPath": "venv/bin/python",
"python.analysis.extraPaths": [],
"python.autoComplete.extraPaths": [],
"files.watcherExclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/venv/**": true,
"**/.git/**": true,
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/venv/**": true,
"**/.git/**": true,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment