style: apply Biome formatting and auto-fixes

- Format 78 files, fixed 42 files total
- Apply safe lint fixes (non-null assertions converted to optional chaining)
- Remaining lint warnings are non-blocking (test code, a11y suggestions)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Ajax Davis 2025-11-26 18:59:49 +10:00
parent 65be671143
commit e904e8d319
34 changed files with 167 additions and 525 deletions

View file

@ -1,9 +1,9 @@
import { defineConfig } from 'vitest/config';
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environment: 'happy-dom',
setupFiles: ['./src/test-setup.ts'],
},
test: {
globals: true,
environment: "happy-dom",
setupFiles: ["./src/test-setup.ts"],
},
});