We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc2d660 commit 27c30c2Copy full SHA for 27c30c2
src/core/prompts/sections/custom-instructions.ts
@@ -34,7 +34,9 @@ async function directoryExists(dirPath: string): Promise<boolean> {
34
35
const MAX_DEPTH = 5
36
37
-//
+/**
38
+ * Recursively resolve directory entries and collect file paths
39
+ */
40
async function resolveDirectoryEntry(
41
entry: Dirent,
42
dirPath: string,
@@ -56,6 +58,9 @@ async function resolveDirectoryEntry(
56
58
}
57
59
60
61
62
+ * Recursively resolve a symbolic link and collect file paths
63
64
async function resolveSymLink(fullPath: string, filePaths: string[], depth: number): Promise<void> {
65
// Avoid cyclic symlinks
66
if (depth > MAX_DEPTH) {
0 commit comments