Skip to content

Instantly share code, notes, and snippets.

@boostup
Created December 11, 2017 13:55
Show Gist options
  • Save boostup/a0069cde441895ecbb2a73a445dc3e90 to your computer and use it in GitHub Desktop.
Save boostup/a0069cde441895ecbb2a73a445dc3e90 to your computer and use it in GitHub Desktop.
VSCode: Hiding files from the project files explorer. To be placed inside [root_directory]/.vscode
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment