選択できるのは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.