summaryrefslogtreecommitdiff
path: root/packages/server/src/utils/getFolderStructure.ts
diff options
context:
space:
mode:
authorJacob Richman <[email protected]>2025-05-02 14:39:39 -0700
committerGitHub <[email protected]>2025-05-02 14:39:39 -0700
commit0556358560f065dec5e35fd5b0544b18ddcc4495 (patch)
tree8ca5ca20991b2950b2360839d35b53d3c03f34ed /packages/server/src/utils/getFolderStructure.ts
parent69d1c644d9034138ed7418f4450230756e84ad93 (diff)
Cleanup low value comments. (#248)
Diffstat (limited to 'packages/server/src/utils/getFolderStructure.ts')
-rw-r--r--packages/server/src/utils/getFolderStructure.ts7
1 files changed, 2 insertions, 5 deletions
diff --git a/packages/server/src/utils/getFolderStructure.ts b/packages/server/src/utils/getFolderStructure.ts
index 0caabe0f..1f7f0fcd 100644
--- a/packages/server/src/utils/getFolderStructure.ts
+++ b/packages/server/src/utils/getFolderStructure.ts
@@ -66,7 +66,6 @@ async function readFullStructure(
options: MergedFolderStructureOptions,
): Promise<FullFolderInfo | null> {
const name = path.basename(folderPath);
- // Initialize with isIgnored: false
const folderInfo: Omit<FullFolderInfo, 'totalChildren' | 'totalFiles'> = {
name,
path: folderPath,
@@ -97,7 +96,7 @@ async function readFullStructure(
subFolders: [],
totalChildren: 0, // No children explored
totalFiles: 0, // No files explored
- isIgnored: true, // Mark as ignored
+ isIgnored: true,
};
folderInfo.subFolders.push(ignoredFolderInfo);
// Skip recursion for this folder
@@ -122,7 +121,6 @@ async function readFullStructure(
for (const entry of entries) {
if (entry.isFile()) {
const fileName = entry.name;
- // Include if no pattern or if pattern matches
if (
!options.fileIncludePattern ||
options.fileIncludePattern.test(fileName)
@@ -156,7 +154,7 @@ async function readFullStructure(
}
return {
- ...(folderInfo as FullFolderInfo), // Cast needed after conditional assignment check
+ ...folderInfo,
totalChildren: totalChildrenCount,
totalFiles: totalFileCount,
};
@@ -285,7 +283,6 @@ function countReducedItems(node: ReducedFolderNode): number {
/**
* Formats the reduced folder structure into a tree-like string.
- * (No changes needed in this function)
* @param node The current node in the reduced structure.
* @param indent The current indentation string.
* @param isLast Sibling indicator.