Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thsmi/sieve.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmid <thomas-schmid@gmx.net>2017-11-12 19:31:03 +0300
committerThomas Schmid <thomas-schmid@gmx.net>2017-11-12 19:31:03 +0300
commit7059421024f070acb7fa8d00377b30e98adc361e (patch)
tree1cfaca7bf1e9d2083d3db0ac4a251138612b13a5 /.vscode
parent600a0280aeed7004d80c8b8dcd800dc0c2fcc88d (diff)
Exclude build directory from vscode project settings
Diffstat (limited to '.vscode')
-rwxr-xr-x.vscode/settings.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 695b10ae..ea193c98 100755
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,7 +1,8 @@
{
"files.trimTrailingWhitespace": true,
"files.exclude": {
- "**/.git": true
- "**/node_modules":true
+ "**/.git": true,
+ "**/node_modules":true,
+ "build/**":true
}
} \ No newline at end of file