style: fix prettier formatting in ipc processing loop
This commit is contained in:
@@ -75,9 +75,9 @@ export function quarantineClaimedIpcFiles(
|
|||||||
}
|
}
|
||||||
|
|
||||||
const movedPaths: string[] = [];
|
const movedPaths: string[] = [];
|
||||||
for (const file of fs.readdirSync(processingDir).filter((f) =>
|
for (const file of fs
|
||||||
f.endsWith('.json'),
|
.readdirSync(processingDir)
|
||||||
)) {
|
.filter((f) => f.endsWith('.json'))) {
|
||||||
const claimedPath = path.join(processingDir, file);
|
const claimedPath = path.join(processingDir, file);
|
||||||
const errorPath = buildIpcErrorPath(errorDir, prefix, file);
|
const errorPath = buildIpcErrorPath(errorDir, prefix, file);
|
||||||
fs.renameSync(claimedPath, errorPath);
|
fs.renameSync(claimedPath, errorPath);
|
||||||
|
|||||||
Reference in New Issue
Block a user