From 51f53d9f9a2b357e6451c6c58e0235fb871e2a05 Mon Sep 17 00:00:00 2001 From: Thiru Date: Sat, 1 Aug 2020 18:07:42 +0200 Subject: [PATCH] Exclude node_modules #15 --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 50dfa3d..86dfd82 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,5 +8,8 @@ "editor.quickSuggestions": true }, "git.enableSmartCommit": true, - "git.postCommitCommand": "sync" + "git.postCommitCommand": "sync", + "files.exclude": { + "**/node_modules": true, + }, }