🔨 Extends file watcher exclude list

This commit is contained in:
Franck Nijhof 2019-05-10 18:41:22 +02:00
parent f765b617e5
commit d57fa01251
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3
2 changed files with 13 additions and 3 deletions

View file

@ -7,6 +7,7 @@
# List of previous config hashes, to allow upgrade "default" configs.
readonly -a PREVIOUS_DEFAULT_CONFIG_HASHES=(
86776df88391c3d94f79f62b430f9ff8538960628d5e04fb660165a5a46640d2e74f89cd68b3e6985dc59101ae2dda00a1e25aa48381acfd4736858c5f23878b
2be4c50575c05711d30121c3a1320698d3dbb034523c481be3aad3b638af3e0a46113d8c3f8cfc1b0f01e4cc10f32da3a30feca161c31b5b27177aeb7231bf70
)
# Ensure persistent data folder exists.

View file

@ -5,10 +5,19 @@
"*.dash": "yaml"
},
"files.watcherExclude": {
"**/__pycache__/**": true,
"**/deps/**": true,
".nfs**": true,
".Trash-0/**": true,
".nfs**": true
"**/__pycache__/**": true,
"**/._*": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/*.db-shm": true,
"**/*.db-wal": true,
"**/*.db": true,
"**/*.log": true,
"**/deps/**": true,
"**/OZW_Log.txt": true,
"**/pyozw.sqlite": true
},
"search.exclude": {
"**/__pycache__/**": true,