Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 566 Bytes

File metadata and controls

15 lines (11 loc) · 566 Bytes

Session Plan

Session Title: Day 213 evolution — code quality and reliability

Task 1: Fix error handling gaps

Files: cmd/iterate/, internal/ Description: Find functions that ignore errors. Add proper error handling with descriptive messages.

Task 2: Add missing tests

Files: internal/ Description: Find exported functions without corresponding tests. Write at least one test per function.

Task 3: Clean up code smells

Files: cmd/iterate/, internal/ Description: Look for defer in loops, unused variables/imports, hardcoded values. Fix one issue.