style: reformat codebase with oxfmt

This commit is contained in:
Alexander Brown
2026-01-19 16:12:59 -08:00
parent a64a9cac95
commit 677c33f4fe
174 changed files with 25355 additions and 4364 deletions

View File

@@ -36,7 +36,7 @@ describe('MyStore', () => {
```typescript
beforeEach(() => {
vi.resetAllMocks() // Not individual mock.mockReset() calls
vi.resetAllMocks() // Not individual mock.mockReset() calls
})
```
@@ -75,9 +75,9 @@ When a store registers event listeners at module load time:
```typescript
function getEventHandler() {
const call = vi.mocked(api.addEventListener).mock.calls.find(
([event]) => event === 'my_event'
)
const call = vi
.mocked(api.addEventListener)
.mock.calls.find(([event]) => event === 'my_event')
return call?.[1] as (e: CustomEvent<MyEventType>) => void
}