Summary
Two files ship with typos baked into their filenames, forcing every importer to reproduce the typo:
backend/src/streak/strerak.module.ts — imported in app.module.ts as:
import { StreakModule } from './streak/strerak.module';
(the class inside is correctly named StreakModule)
backend/src/config/enviroment.validation.ts - "environment" is misspelled.
Why bother
Filename typos propagate into every import site, IDE quick-fixes, and grep-based navigation. They also look sloppy to new contributors evaluating the project. Renaming is mechanical: git mv + update importers + confirm tsc --noEmit.
Acceptance criteria
Summary
Two files ship with typos baked into their filenames, forcing every importer to reproduce the typo:
backend/src/streak/strerak.module.ts— imported inapp.module.tsas:StreakModule)backend/src/config/enviroment.validation.ts- "environment" is misspelled.Why bother
Filename typos propagate into every import site, IDE quick-fixes, and grep-based navigation. They also look sloppy to new contributors evaluating the project. Renaming is mechanical:
git mv+ update importers + confirmtsc --noEmit.Acceptance criteria
streak/strerak.module.tsrenamed tostreak/streak.module.ts;app.module.tsupdated.config/enviroment.validation.tsrenamed toconfig/environment.validation.ts; importers updated.