Don't show build files in vscode explorer

This commit is contained in:
Thomas Lovén 2022-01-06 00:49:26 +01:00
parent b1fb74db0c
commit fee6738226

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

@ -0,0 +1,12 @@
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/*.o": true,
"**/*.d": true,
}
}