style: apply prettier formatting

This commit is contained in:
ejclaw
2026-04-08 19:20:22 +09:00
parent 8b9bebd29e
commit 1fedd36ec7
11 changed files with 65 additions and 50 deletions

View File

@@ -73,9 +73,9 @@ export function getTaskByIdFromDatabase(
database: Database,
id: string,
): ScheduledTask | undefined {
return database.prepare('SELECT * FROM scheduled_tasks WHERE id = ?').get(id) as
| ScheduledTask
| undefined;
return database
.prepare('SELECT * FROM scheduled_tasks WHERE id = ?')
.get(id) as ScheduledTask | undefined;
}
export function findDuplicateCiWatcherInDatabase(