I have a multi-root workspace set up, in which two out of the four folders are external thus I can't add specific settings to that folder. I would like to disable search on those folders, preferably in the workspace settings.
I couldn't find the right pattern to make that work :(
Below are my workspace settings, I am trying to filter files in the out folder:
"folders": [
{
"name": "Application"
"path": "./application"
},
{
"name": "Device"
"path": "./device"
},
{
"name": "Out"
"path": "./out"
}],
"settings": {
// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the files.exclude setting.
"search.exclude": {
"out": true,
"**/tests": true,
".tags": true
},