style: fix prettier formatting in ipc processing loop

This commit is contained in:
Eyejoker
2026-03-25 22:00:52 +09:00
parent 691dbc3310
commit 07c1437055

View File

@@ -75,9 +75,9 @@ export function quarantineClaimedIpcFiles(
}
const movedPaths: string[] = [];
for (const file of fs.readdirSync(processingDir).filter((f) =>
f.endsWith('.json'),
)) {
for (const file of fs
.readdirSync(processingDir)
.filter((f) => f.endsWith('.json'))) {
const claimedPath = path.join(processingDir, file);
const errorPath = buildIpcErrorPath(errorDir, prefix, file);
fs.renameSync(claimedPath, errorPath);