From 914902cf9ec4f8f6c5684f454a4e3f2436edf4b8 Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Thu, 9 Mar 2017 11:47:20 -0800 Subject: [PATCH] Ignore build output in VSCode. --- .vscode/settings.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 29398381..f682222e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -12,6 +12,8 @@ ".cljs_*_repl": true, ".gitignore": true, ".lein*": true, - ".sw*": true + ".sw*": true, + "target": true, // Top-level build output. + "*/target": true // Sub-crate build output. } } \ No newline at end of file