Code Review Checklist
Get a thorough code review with security, performance, and style feedback.
Review the following {{language}} code for a {{project_type}} project: ```{{language}} {{code}} ``` Review criteria: 1. **Correctness** — Logic errors, edge cases, off-by-one 2. **Security** — Injection, auth, data exposure, OWASP top 10 3. **Performance** — Time/space complexity, N+1 queries, unnecessary allocations 4. **Readability** — Naming, structure, comments where needed 5. **Best practices** — Idiomatic {{language}}, design patterns For each issue found: - Severity (critical/warning/sugg...