1.2 KiB
1.2 KiB
질문에 대한 답변과 설명은 한국어로 한다.
Quality Assurance Guidelines
Commit Standards
- Write in Korean.
- Use the present tense in the subject line (e.g., "Add feature" not "Added feature").
- Keep the subject line to 50 characters or less.
- Add a blank line between the subject and body.
- Keep the body to 72 characters or less per line.
- Within a paragraph, only break lines when the text exceeds 72 characters.
- Describe changes to public API features and do not include implementation details such as package-private code.
- Do not mention test code in commit messages.
- Do not use any prefix (such as "fix:", "update:", "docs:", "feat:", etc.) in the subject line.
- Do not start the subject line with a lowercase letter unless the first word is a function name or another identifier that is conventionally lowercase and there is a clear, justifiable reason for the exception. Otherwise, always start with an uppercase letter.
- Do not include tool advertisements, branding, or promotional content in commit messages.
- Use separate git commands to stage files before committing.
- Always validate commits using
work/scripts/check-commit-message-rules.shand fix until validation passes.