Add this to Visual Studio Code
Last active
June 14, 2025 15:05
-
-
Save htv2012/22b48a1f85c6bf65f0c82d0821188041 to your computer and use it in GitHub Desktop.
Exclude Files and Directories from vscode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/.DS_Store": true, | |
| "**/Thumbs.db": true, | |
| "**/__pycache__": true, | |
| "**/.venv": true, | |
| "**/ruff_cache": true | |
| }, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment