Quantcast
Channel: How can I show .gitignored / .ignored files in visual studio code? - Stack Overflow
Viewing all articles
Browse latest Browse all 18

Answer by drussell for How can I show ignored files in visual studio code?

$
0
0

this is possible - go to Preferences > Settings, and edit the User Settings file to comment out excluded files in the "files.exclude" section - like node_modules etc. Here are my settings for example:

"files.exclude": {"**/.git": true, // this is a default value"**/.DS_Store": true, // this is a default value  // "**/node_modules": true,"**/jspm_packages": true,"**/coverage": true,"**/public": true,"**/.cache": true,"**/.bundles": true,"**/es": true,  // "**/dist": true,  // "**/lib": true,"**/umd": true},

Viewing all articles
Browse latest Browse all 18

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>