brackt/app/routes/api
Chris Parsons e2b178221a
Add oxlint linting setup with zero errors (#194)
* Add oxlint and fix all lint errors

- Install oxlint, add .oxlintrc.json with rules for TypeScript/React
- Add npm run lint / lint:fix scripts
- Add Claude PostToolUse hook to run oxlint on every edited file
- Fix 101 errors: unused vars/imports, eqeqeq, prefer-const, no-new-array
- Fix no-array-index-key (use stable keys or suppress positional cases)
- Fix exhaustive-deps missing dependency in useEffect
- Promote exhaustive-deps and no-array-index-key to errors
- Fix Map.get() !== null bug in $leagueId.server.ts (should be !== undefined)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* Fix no-explicit-any warnings and upgrade tsconfig to ES2023

- Replace all `any` types with proper types or `unknown` across ~20 files
- Add typed socket payload interfaces in draft route and useDraftSocket
- Use any[] with eslint-disable for socket.io callbacks (legitimate escape hatch)
- Bump all tsconfigs from ES2022 → ES2023 to support toSorted/toReversed
- Fix cascading type errors uncovered by removing any: Map.get narrowing,
  participant relation types, ChartDataPoint, Partial<NewSeason> indexing
- Add ParticipantResultWithParticipant type to participant-result model
- Fix test fixtures to match updated interfaces (DraftCell, ParticipantResult)
- Fix duplicate getQPStandings import in sportsSeasonId.server.ts

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* Promote no-explicit-any to error

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-21 09:44:05 -07:00
..
__tests__ Add standard draft clock mode (#67) (#189) 2026-03-20 21:36:39 -07:00
webhooks Add oxlint linting setup with zero errors (#194) 2026-03-21 09:44:05 -07:00
autodraft.update.ts feat: enhance autodraft functionality with detailed settings and commissioner controls (#61) 2026-03-03 20:14:38 -08:00
draft.adjust-time-bank.ts Grant sitewide admins commissioner-level access in leagues (#162) 2026-03-18 00:41:56 -07:00
draft.force-autopick.ts Grant sitewide admins commissioner-level access in leagues (#162) 2026-03-18 00:41:56 -07:00
draft.force-manual-pick.ts Add standard draft clock mode (#67) (#189) 2026-03-20 21:36:39 -07:00
draft.make-pick.ts Add standard draft clock mode (#67) (#189) 2026-03-20 21:36:39 -07:00
draft.pause.ts Grant sitewide admins commissioner-level access in leagues (#162) 2026-03-18 00:41:56 -07:00
draft.replace-pick.ts Grant sitewide admins commissioner-level access in leagues (#162) 2026-03-18 00:41:56 -07:00
draft.resume.ts Grant sitewide admins commissioner-level access in leagues (#162) 2026-03-18 00:41:56 -07:00
draft.rollback.ts Grant sitewide admins commissioner-level access in leagues (#162) 2026-03-18 00:41:56 -07:00
draft.start.ts Add standard draft clock mode (#67) (#189) 2026-03-20 21:36:39 -07:00
queue.add.ts feat: implement real-time queue updates via socket events in queue actions (#63) 2026-03-04 21:39:54 -08:00
queue.clear.ts feat: implement real-time queue updates via socket events in queue actions (#63) 2026-03-04 21:39:54 -08:00
queue.remove.ts feat: implement real-time queue updates via socket events in queue actions (#63) 2026-03-04 21:39:54 -08:00
queue.reorder.ts feat: implement real-time queue updates via socket events in queue actions (#63) 2026-03-04 21:39:54 -08:00
seasons.$seasonId.draft.ts Optimize user data fetching with batch queries and centralize display name logic (#176) 2026-03-18 16:46:07 -07:00