Apply formatting

This commit is contained in:
2025-06-08 15:21:58 +09:00
parent b5ff912fcb
commit a728ebb66c
28 changed files with 1809 additions and 1137 deletions

View File

@ -13,6 +13,12 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
- **Admin panel development**: `bun run dev:admin`
- **Manual batch process**: `bun run scripts/fetch_and_generate.ts`
- **Type checking**: `bunx tsc --noEmit`
- **Format code**: `bun run format`
- **Check format**: `bun run format:check`
- **Lint code**: `bun run lint`
- **Fix lint issues**: `bun run lint:fix`
- **Check all (format + lint)**: `bun run check`
- **Fix all issues**: `bun run check:fix`
## Architecture Overview