Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
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.