We can easily hide files in vscode .
- Click on file--> preferences --> work space settings
- Place your settings in settings.json
The files types which needs to be hidden are set to true as shown below.
// Place your settings in this file to overwrite default and user settings. { "files.exclude": { "**/.git": true, "**/.svn": true, "**/.hg": true, "**/app/**/*.js": true, "**/.DS_Store": true, "**/*.map": true }, //files to autosave after "editor.quickSuggestionsDelay": "files.autoSave": "afterDelay" }
No comments:
Post a Comment