Skip to content

Commit 32bdc8c

Browse files
committed
fix: lint error - prefix unused catch variable with underscore
1 parent 113a553 commit 32bdc8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/sdk-paths.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function findSDKRootSync(): string {
1717
if (pkg.name === 'kitdot' || fs.existsSync(path.join(dir, 'templates'))) {
1818
return dir;
1919
}
20-
} catch (e) {
20+
} catch (_e) {
2121
// Invalid package.json, continue searching
2222
}
2323
}

0 commit comments

Comments
 (0)