summaryrefslogtreecommitdiff
path: root/packages/cli/src/utils/getFolderStructure.ts
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-04-18 10:53:16 -0400
committerN. Taylor Mullen <[email protected]>2025-04-18 12:41:02 -0400
commite0339993aeae97e0ce77ffa430214b64007b9f6f (patch)
treed48320c7cc66076a42b42de8cee7ff9985474fdc /packages/cli/src/utils/getFolderStructure.ts
parentcb303514035440b1631964cad5093a4c80cd3e43 (diff)
Initial auto-fixing of linting errors.
- This is the result of runing `npm lint -- -fix`
Diffstat (limited to 'packages/cli/src/utils/getFolderStructure.ts')
-rw-r--r--packages/cli/src/utils/getFolderStructure.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/utils/getFolderStructure.ts b/packages/cli/src/utils/getFolderStructure.ts
index 5c26f400..d1e780a8 100644
--- a/packages/cli/src/utils/getFolderStructure.ts
+++ b/packages/cli/src/utils/getFolderStructure.ts
@@ -61,7 +61,7 @@ async function readFullStructure(
const name = path.basename(folderPath);
// Initialize with isIgnored: false
const folderInfo: Omit<FullFolderInfo, 'totalChildren' | 'totalFiles'> = {
- name: name,
+ name,
path: folderPath,
files: [],
subFolders: [],