fix: exclude some folder from watch
This commit is contained in:
parent
ce88fc9f88
commit
f83bd2b61f
8
.vscode/settings.json
vendored
8
.vscode/settings.json
vendored
|
@ -25,5 +25,13 @@
|
|||
"**/Thumbs.db": true, // defaults
|
||||
"**/__pycache__": true, // annoying
|
||||
"**/.mypy_cache": true, // annoying
|
||||
},
|
||||
"files.watcherExclude": {
|
||||
"**/.git/objects/**": true,
|
||||
"**/.git/subtree-cache/**": true,
|
||||
"**/node_modules/*/**": true,
|
||||
"**/.hg/store/**": true,
|
||||
"**/output/**": true,
|
||||
"**/ShapeNetCore.v2.PC15k/**": true,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue