Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
Skill 17 - Code Review and Definition of Done
Review Checklist
Definition of Done
A C#/.NET task is done when:
- The code compiles.
- Existing tests pass.
- New behavior is covered by tests or there is a stated reason it cannot be tested here.
- Security and nullability concerns are addressed.
- The implementation is no larger than needed.
- The user can reproduce the result with provided commands.