Last active
December 26, 2018 02:00
-
-
Save virgilwashere/f943cbf7f0cea0c13283f185f9bee8fb to your computer and use it in GitHub Desktop.
# vscode ## Explorer tree view display Configure glob patterns for excluding files and folders. For example, the files explorer decides which files and folders to show or hide based on this setting.
This file contains 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, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/_site": true, | |
"**/tmp": true, | |
"**/*.pyc": true, | |
"**/*.asset-cache": true, | |
"**/*.cache": true, | |
"**/*.jekyll-cache": true, | |
"**/*.tweet-cache": true, | |
"**/__pycache__": true, | |
"**/.pytest_cache": true, | |
"**/*.egg-info": true, | |
"**/*.coverage": true, | |
"**/celerybeat-schedule": true, | |
"**/node_modules": true, | |
"**/bower_components": true | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment