style: align oxfmt to trailing-comma 'all' and normalize code
All checks were successful
Build and Push Docker Image / build (push) Successful in 28s

The repo was authored prettier-style (trailing-comma 'all') but .oxfmtrc.json
was set to 'es5', so every formatted file diverged. Switch the config to 'all'
to match the existing code, ignore docs/** and **/drizzle/** (prose + generated
snapshots the formatter should not own), and reformat the source tree once for
consistency. No behavioural change; all suites green (api 60, worker 28, admin 21).
This commit is contained in:
Bas van Rossem
2026-06-17 21:36:18 +02:00
parent 1807f2b6d6
commit 70ac27ec8e
27 changed files with 48 additions and 51 deletions

View File

@@ -18,7 +18,7 @@ export function createApp(): Hono {
allowHeaders: ['Content-Type', 'Authorization'],
exposeHeaders: ['set-auth-token'], // so the SPA can read the bearer token on sign-in
credentials: true,
})
}),
);
app.route('/', health);
app.on(['POST', 'GET'], '/api/auth/*', (c) => auth.handler(c.req.raw));

View File

@@ -45,7 +45,7 @@ export const session = sqliteTable(
},
(table) => ({
sessionUserIdIdx: index('session_userId_idx').on(table.userId),
})
}),
);
export const account = sqliteTable(
@@ -73,7 +73,7 @@ export const account = sqliteTable(
},
(table) => ({
accountUserIdIdx: index('account_userId_idx').on(table.userId),
})
}),
);
export const verification = sqliteTable(
@@ -93,7 +93,7 @@ export const verification = sqliteTable(
},
(table) => ({
verificationIdentifierIdx: index('verification_identifier_idx').on(table.identifier),
})
}),
);
export const userRelations = relations(user, ({ many }) => ({
@@ -157,5 +157,5 @@ export const workSessions = sqliteTable(
(table) => ({
workSessionsUserIdIdx: index('work_sessions_userId_idx').on(table.userId),
workSessionsStartTimeIdx: index('work_sessions_startTime_idx').on(table.startTime),
})
}),
);

View File

@@ -5,7 +5,7 @@ type WorkSessionRow = typeof workSessions.$inferSelect;
export function toWorkSession(
row: WorkSessionRow,
opts: { activityName?: string | null; userName?: string | null; userEmail?: string | null } = {}
opts: { activityName?: string | null; userName?: string | null; userEmail?: string | null } = {},
): WorkSession {
return {
id: row.id,

View File

@@ -35,8 +35,8 @@ adminRoutes.get('/api/admin/sessions', async (c) => {
activityName: r.activityName,
userName: r.userName,
userEmail: r.userEmail,
})
)
}),
),
);
});
@@ -54,7 +54,7 @@ adminRoutes.get('/api/admin/sessions/active', async (c) => {
activityName: r.activityName,
userName: r.userName,
userEmail: r.userEmail,
})
)
}),
),
);
});

View File

@@ -236,7 +236,7 @@ describe('activities routes', () => {
expect(after.map((r) => r.id)).toEqual(ids);
// In particular, b now precedes a.
expect(after.findIndex((r) => r.id === b.id)).toBeLessThan(
after.findIndex((r) => r.id === a.id)
after.findIndex((r) => r.id === a.id),
);
});

View File

@@ -14,7 +14,7 @@ async function completedSession(
token: string,
activityId: number,
insoleType: string,
durationSeconds: number
durationSeconds: number,
): Promise<number> {
const startRes = await app.request('/api/sessions/start', {
method: 'POST',
@@ -47,13 +47,13 @@ describe('csv export', () => {
expect(res.status).toBe(200);
expect(res.headers.get('content-type')).toContain('text/csv');
expect(res.headers.get('content-disposition')).toBe(
'attachment; filename="insole-production-report.csv"'
'attachment; filename="insole-production-report.csv"',
);
const text = await res.text();
const lines = text.split('\n');
expect(lines[0]).toBe(
'"ID","Task","Insole Type","No. of Insoles","Date","Total Duration","Paused Duration","Start Time","End Time"'
'"ID","Task","Insole Type","No. of Insoles","Date","Total Duration","Paused Duration","Start Time","End Time"',
);
expect(lines).toHaveLength(2);
expect(lines[1]).toContain('"Frezen"');

View File

@@ -27,7 +27,7 @@ export async function createTestUser(email: string, role: 'worker' | 'admin' = '
export async function authToken(
app: Hono,
email: string,
role: 'worker' | 'admin' = 'worker'
role: 'worker' | 'admin' = 'worker',
): Promise<string> {
await createTestUser(email, role);
const signin = await app.request('/api/auth/sign-in/email', {
@@ -47,7 +47,7 @@ export function bearer(token: string): Record<string, string> {
// Insert an activity straight into the DB (test setup that should not depend on authz).
export async function seedActivity(
name: string,
insoleTypes: string[] = ['Kurk', 'Berk', '3D']
insoleTypes: string[] = ['Kurk', 'Berk', '3D'],
): Promise<number> {
const [row] = await db.insert(activities).values({ name, insoleTypes }).returning();
return row.id;

View File

@@ -33,7 +33,7 @@ describe('seed', () => {
await seed();
expect(await db.select().from(user).where(eq(user.email, 'admin@solelog.local'))).toHaveLength(
1
1,
);
});
});

View File

@@ -378,7 +378,7 @@ describe('session reads', () => {
const body = await res.json();
expect(body).toHaveLength(2);
expect(new Date(body[0].start_time).getTime()).toBeGreaterThan(
new Date(body[1].start_time).getTime()
new Date(body[1].start_time).getTime(),
);
expect(body[0].activity_name).toBe('Slijpen');
expect(body[1].activity_name).toBe('Frezen');