Update CLAUDE.md with project overview and repository structure; add commit message guidelines in Korean. Create new commit rules document for consistent message formatting.

This commit is contained in:
2026-02-21 20:10:34 +09:00
parent 587a46d601
commit ff5bd56b40
2 changed files with 75 additions and 29 deletions

View File

@@ -0,0 +1,24 @@
---
description: 한글 커밋 메시지 작성 규칙
alwaysApply: true
---
# 커밋 메시지 규칙
커밋 메시지는 아래 형식을 따른다.
- `feat: 내용`
- `refactor: 내용`
- `test: 내용`
## 작성 원칙
- `내용`은 반드시 한글로 작성한다.
- 제목 한 줄로 작성하고 불필요한 기호를 사용하지 않는다.
- 변경 의도가 드러나게 간결하게 작성한다.
## 예시
- `feat: 회원 가입 폼 유효성 검사 추가`
- `refactor: 결제 모듈 상태 관리 로직 분리`
- `test: 로그인 서비스 단위 테스트 케이스 보강`