Skip to content

Instantly share code, notes, and snippets.

@philippslang
Created July 19, 2018 08:41
Show Gist options
  • Save philippslang/7fcb5cb8c49945835e07dfa712fb57fd to your computer and use it in GitHub Desktop.
Save philippslang/7fcb5cb8c49945835e07dfa712fb57fd to your computer and use it in GitHub Desktop.
VS Code Python - Exclude search and watch
{
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/venv/**": true,
"**/.git/**": true,
},
"files.watcherExclude": {
"**/.git/**": true,
"**/venv/**": true
},
"python.pythonPath": "${workspaceFolder}/venv/bin/python"
}
@ivangolo
Copy link

ivangolo commented Aug 5, 2021

Search: /venv/, frontend/static/, /migrations/, media/, models/,adara/**,urls.py,apps.py,models.py,admin.py

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment