Trello
L

Inbox

Consolidate your to-dos

🔧 Tech Debt & Code Quality

Identified

Remove deprecated API endpoints still used by old mobile app versions
📄
Refactor god classes with 3000+ lines into smaller modules
📄
Update outdated dependencies with security vulnerabilities
📄
Eliminate duplicate code across frontend components (DRY violations)
📄

Prioritized

Replace console.log debugging with proper logging framework
📄
Fix inconsistent error handling patterns across codebase
📄
Migrate callback hell to async/await for better readability
📄
Remove feature flags for features shipped 6+ months ago
📄

In Progress

Standardize code formatting with Prettier and ESLint
📄
Improve test coverage from 45% to 80%+
📄
Replace magic numbers and strings with named constants
📄
Optimize slow SQL queries identified in performance profiling
📄

Review

Document undocumented internal APIs and services
📄
Refactor monolithic CSS into component-scoped styles
📄
Implement database migrations instead of manual SQL scripts
📄

Done