From f83bd2b61fd701b1556d85d77a9e45c9cca053b3 Mon Sep 17 00:00:00 2001 From: Laurent FAINSIN Date: Thu, 13 Apr 2023 09:58:20 +0200 Subject: [PATCH] fix: exclude some folder from watch --- .vscode/settings.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 6efe7f6..21d0759 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -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, } }