Skip to content

Instantly share code, notes, and snippets.

@dzil123
Created October 18, 2018 01:38
Show Gist options
  • Save dzil123/ee06275bf9897aa0ec0d9a2e5dc3fe64 to your computer and use it in GitHub Desktop.
Save dzil123/ee06275bf9897aa0ec0d9a2e5dc3fe64 to your computer and use it in GitHub Desktop.
VSCode settings.json to go in .vscode/ to hide all non-code folders in the Explorer panel for FTC Java
{
"java.configuration.updateBuildConfiguration": "automatic",
"files.exclude": { // Hide files in Explorer panel
"**/.git": true, // Default excluded
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
".**/": true, // Hidden Folders
"**/.**": true, // Hidden Files
"**gradle**": true, // Gradle files in root and gradle folder
"bin/": true, // bin folder
"build/": true // build folder
// Should leave only src/ folder
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment