Visual Studio Code files.exclude setting not working
Check this button if you're seeing excluded files in search.
The cog button needs to be highlighted in order for files.exclude
to apply.
My problem was basing my pattern off of the existing ones, which excluded specific file names rather than patterns. I simply needed to add an asterisk before the file extension, i.e.
"**/*.meta"
instead of
"**/.meta"