mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-07 17:53:32 +08:00
fix: remove unreachable return after process.exit in post-edit-typecheck hook
This commit is contained in:
@@ -33,7 +33,6 @@ process.stdin.on("end", () => {
|
|||||||
if (!fs.existsSync(resolvedPath)) {
|
if (!fs.existsSync(resolvedPath)) {
|
||||||
process.stdout.write(data);
|
process.stdout.write(data);
|
||||||
process.exit(0);
|
process.exit(0);
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
// Find nearest tsconfig.json by walking up (max 20 levels to prevent infinite loop)
|
// Find nearest tsconfig.json by walking up (max 20 levels to prevent infinite loop)
|
||||||
let dir = path.dirname(resolvedPath);
|
let dir = path.dirname(resolvedPath);
|
||||||
|
|||||||
Reference in New Issue
Block a user