You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -545,6 +545,22 @@
545
545
"markdownDescription": "Search sub-folders of workspace folder for Swift Packages at start up.",
546
546
"scope": "machine-overridable"
547
547
},
548
+
"swift.ignoreSearchingForPackagesInSubfolders": {
549
+
"type": "array",
550
+
"items": {
551
+
"type": "string"
552
+
},
553
+
"default": [
554
+
".",
555
+
".build",
556
+
"Packages",
557
+
"out",
558
+
"bazel-out",
559
+
"bazel-bin"
560
+
],
561
+
"markdownDescription": "A list of glob patterns to ignore when searching sub-folders for Swift Packages. The `swift.searchSubfoldersForPackages` must be `true` for this setting to have an effect. Always use forward-slashes in glob expressions regardless of platform. This is combined with VS Code's default `files.exclude` setting.",
0 commit comments