exclude build directory from vscode explorer

This commit is contained in:
Martin Brodbeck 2018-07-06 15:33:58 +02:00
parent 1e8c4eac5f
commit 896284faf2
1 changed files with 10 additions and 0 deletions

10
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/build": true
}
}