Skip to content

Instantly share code, notes, and snippets.

@virgilwashere
Last active December 26, 2018 02:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save virgilwashere/f943cbf7f0cea0c13283f185f9bee8fb to your computer and use it in GitHub Desktop.
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.
"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