Rulebook

Claude Rules 관리

문서맵
  • component-design
  • entities-api
  • entities-layer
  • entities-model
  • error-handling
  • features-layer
  • fsd-architecture
  • react-hooks
    1
  • security
  • server-components
  • shared-layer
  • tailwind-css
  • tanstack-query
  • testing
  • views-layer
  • widget-layer
  • changelog
  • development-workflow
  • documentation
  • git-commit
  • marketing-seo
  • marketing-ux
  • naming-convention
  • security
  • typescript-standards
  • ux-copy-and-tone
  • api-design
  • database
  • nest
  • security
  • supabase
  • README
전체 룰 다운로드
common/git-commit
activev12026. 4. 12.

description: "Git 커밋 컨벤션"

Git Commit Convention

Conventional Commits Format

  • feat(scope): description - 새로운 기능
  • fix(scope): description - 버그 수정
  • refactor(scope): description - 코드 리팩토링
  • docs(scope): description - 문서 변경
  • test(scope): description - 테스트 추가/수정
  • style(scope): description - 포맷팅, 세미콜론 등 (기능 변경 없음)
  • perf(scope): description - 성능 개선
  • chore(scope): description - 빌드, 툴링 변경

예시

  • feat(auth): add JWT-based authentication hook
  • fix(auth): resolve SSR localStorage error
  • docs(readme): update setup instructions

커밋 전 체크리스트

  1. 테스트 통과 확인
  2. 빌드 성공 확인
  3. 필요한 경우 문서 업데이트
  4. Conventional Commits 형식 준수

피드백 0

아직 피드백이 없어요. 첫 번째로 의견을 남겨보세요!

목차

Conventional Commits Format예시커밋 전 체크리스트