Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
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.