1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-10-16 09:37:27 +00:00

Hide unmodifiable files from VSC

This commit is contained in:
Steffo 2022-08-13 04:16:12 +00:00 committed by GitHub
parent 5b7947028f
commit f954588c34
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
".idea": true,
".dockerignore": true,
"Cargo.lock": true,
"riot.txt": true,
"target": true,
}
}