Description
During the initial prototyping and hackathon phases, developers often leave behind console.log statements, commented-out old code, and unused imports. It's time to take out the trash.
Acceptance Criteria
Technical Details
- Use tools like
knip or ts-prune to automatically find unused exports across the entire monorepo.
Description
During the initial prototyping and hackathon phases, developers often leave behind
console.logstatements, commented-out old code, and unused imports. It's time to take out the trash.Acceptance Criteria
npm run lintand fix all "unused variable" warnings.console.logand remove them (replace necessary ones with proper error logging orconsole.error).Technical Details
kniports-pruneto automatically find unused exports across the entire monorepo.