Add eslint

This commit is contained in:
2026-03-03 22:56:12 +01:00
parent d641229f9d
commit ad0e28bf84
92 changed files with 2656 additions and 1127 deletions

View File

@@ -20,7 +20,9 @@ export class ElectronDatabaseService {
/** Initialise the SQLite database via the main-process IPC bridge. */
async initialize(): Promise<void> {
if (this.isInitialised) return;
if (this.isInitialised)
return;
await this.api.initialize();
this.isInitialised = true;
}