diff options
| author | Bond_009 <bond.009@outlook.com> | 2022-11-05 16:52:18 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2022-11-05 16:52:18 +0100 |
| commit | b463b563995d2c47daee907caaf91b8448216d47 (patch) | |
| tree | c14b732157520a1fe7f6ecfcc6a59c5138d2a26c | |
| parent | 32925f37680cad9e9d6c099af04ef7fd2942bf56 (diff) | |
code: Don't hide bin dirs
| -rw-r--r-- | code/.config/Code/User/settings.json | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/code/.config/Code/User/settings.json b/code/.config/Code/User/settings.json index e58ebf7..1f9a59e 100644 --- a/code/.config/Code/User/settings.json +++ b/code/.config/Code/User/settings.json @@ -64,15 +64,14 @@ }, "files.eol": "\n", "files.exclude": { + "**/.DS_Store": true, "**/.git": true, - "**/.svn": true, "**/.hg": true, - "**/.DS_Store": true, - "**/bin": true, + "**/.svn": true, + "**/Debug": true, "**/obj": true, "**/Release": true, - "**/Debug": true, - "**/tidy-build": true, + "**/tidy-build": true }, "files.insertFinalNewline": true, "files.trimTrailingWhitespace": true, |
