From d221217f89136a1a59d4c0cfe8e3726863301828 Mon Sep 17 00:00:00 2001 From: Patrik Kullman Date: Sat, 23 Feb 2019 17:01:21 +0100 Subject: [PATCH] VSCode: Standard watcherExclude config + formatting :O Signed-off-by: Patrik Kullman --- .vscode/settings.json | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index ad014ac0..fdf9e28e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,19 @@ { "eslint.autoFixOnSave": true, "eslint.validate": [ - { "language": "javascript", "autoFix": true }, - { "language": "html", "autoFix": true } - ] -} + { + "language": "javascript", + "autoFix": true + }, + { + "language": "html", + "autoFix": true + } + ], + "files.watcherExclude": { + "**/.git/objects/**": true, + "**/.git/subtree-cache/**": true, + "**/node_modules/**": true, + "**/bower_components/**": true + } +} \ No newline at end of file