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: desktop/src-tauri/src/types/generated/workspace.rs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -76,15 +76,15 @@ impl ::std::convert::From<::std::vec::Vec<::std::string::String>> for CommonTags
76
76
#[doc = " \"type\": \"object\","]
77
77
#[doc = " \"properties\": {"]
78
78
#[doc = " \"excluded\": {"]
79
-
#[doc = " \"description\": \"A list of directories to exclude from the executable search.\","]
79
+
#[doc = " \"description\": \"A list of directories or file patterns to exclude from the executable search.\\nSupports directory paths (e.g., \\\"node_modules/\\\", \\\"vendor/\\\") and glob patterns for filenames (e.g., \\\"*.js.flow\\\", \\\"*temp*\\\").\\nCommon exclusions like node_modules/, vendor/, third_party/, external/, and *.js.flow are excluded by default.\\n\","]
80
80
#[doc = " \"default\": [],"]
81
81
#[doc = " \"type\": \"array\","]
82
82
#[doc = " \"items\": {"]
83
83
#[doc = " \"type\": \"string\""]
84
84
#[doc = " }"]
85
85
#[doc = " },"]
86
86
#[doc = " \"included\": {"]
87
-
#[doc = " \"description\": \"A list of directories to include in the executable search.\","]
87
+
#[doc = " \"description\": \"A list of directories or file patterns to include in the executable search.\\nSupports directory paths (e.g., \\\"src/\\\", \\\"scripts/\\\") and glob patterns for filenames (e.g., \\\"*.test.flow\\\", \\\"example*\\\").\\n\","]
88
88
#[doc = " \"default\": [],"]
89
89
#[doc = " \"type\": \"array\","]
90
90
#[doc = " \"items\": {"]
@@ -97,10 +97,10 @@ impl ::std::convert::From<::std::vec::Vec<::std::string::String>> for CommonTags
#[doc = "A list of directories to exclude from the executable search."]
100
+
#[doc = "A list of directories or file patterns to exclude from the executable search.\nSupports directory paths (e.g., \"node_modules/\", \"vendor/\") and glob patterns for filenames (e.g., \"*.js.flow\", \"*temp*\").\nCommon exclusions like node_modules/, vendor/, third_party/, external/, and *.js.flow are excluded by default.\n"]
#[doc = "A list of directories to include in the executable search."]
103
+
#[doc = "A list of directories or file patterns to include in the executable search.\nSupports directory paths (e.g., \"src/\", \"scripts/\") and glob patterns for filenames (e.g., \"*.test.flow\", \"example*\").\n"]
Copy file name to clipboardExpand all lines: docs/schemas/workspace_schema.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -16,15 +16,15 @@
16
16
"type": "object",
17
17
"properties": {
18
18
"excluded": {
19
-
"description": "A list of directories to exclude from the executable search.",
19
+
"description": "A list of directories or file patterns to exclude from the executable search.\nSupports directory paths (e.g., \"node_modules/\", \"vendor/\") and glob patterns for filenames (e.g., \"*.js.flow\", \"*temp*\").\nCommon exclusions like node_modules/, vendor/, third_party/, external/, and *.js.flow are excluded by default.\n",
20
20
"type": "array",
21
21
"default": [],
22
22
"items": {
23
23
"type": "string"
24
24
}
25
25
},
26
26
"included": {
27
-
"description": "A list of directories to include in the executable search.",
27
+
"description": "A list of directories or file patterns to include in the executable search.\nSupports directory paths (e.g., \"src/\", \"scripts/\") and glob patterns for filenames (e.g., \"*.test.flow\", \"example*\").\n",
|`excluded`| A list of directories to exclude from the executable search. |`array` (`string`) |[]||
51
-
|`included`| A list of directories to include in the executable search. |`array` (`string`) |[]||
50
+
|`excluded`| A list of directories or file patterns to exclude from the executable search. Supports directory paths (e.g., "node_modules/", "vendor/") and glob patterns for filenames (e.g., "*.js.flow", "*temp*"). Common exclusions like node_modules/, vendor/, third_party/, external/, and *.js.flow are excluded by default. |`array` (`string`) |[]||
51
+
|`included`| A list of directories or file patterns to include in the executable search. Supports directory paths (e.g., "src/", "scripts/") and glob patterns for filenames (e.g., "*.test.flow", "example*"). |`array` (`string`) |[]||
0 commit comments