VS Code
Keyboard shortcutsโ
Settingsโ
Press โงโP to open the Command Palette, then choose Preferences: Open User Settings (JSON).
Format-on-saveโ
Add the following to automatically format files whenever you save them:
"editor.formatOnSave": true,
Hide files from viewโ
Use files.exclude to hide files from the Explorer view:
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"node_modules": true
}