How can I ignore folders that are "added" to my workspace? #1768
-
So I open a folder in VSCode, and then add some folders in other locations to the workspace through File > Add folder to workspace. One of those folders is called "_ SDK _", and I only want to use it for reference. I'm okay with VSCode getting libary info there, but ignoring it completely is fine too. I tried everything I could think of in the Lua.Workspace.ignoreDir setting. I tried:
None of those worked. Am I simply missing something, or is it not possible to ignore folders like this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hello 👋 Check your The |
Beta Was this translation helpful? Give feedback.
Hello 👋
Check your
diagnostics.ignoredFiles
setting and make sure that it is not set to still diagnose ignored files.The
workspace.ignoreDir
setting uses glob pattern syntax, so adding_SDK_
should work as far as I am aware.