Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 892 Bytes

File metadata and controls

50 lines (34 loc) · 892 Bytes

Git Commit Guidelines

To keep project history clear and professional, this repository enforces Conventional Commits.

Commit Format

Use this format for every commit:

<type>: <short description>

Example:

  • feat: add wallet connection status indicator
  • fix: handle null transaction hash in simulator

Allowed Prefixes

The following commit prefixes are allowed:

  • build
  • chore
  • ci
  • docs
  • feat
  • fix
  • perf
  • refactor
  • revert
  • style
  • test

Examples

Valid:

  • feat: add student profile endpoint
  • fix: prevent duplicate issue claim submissions
  • docs: clarify backend setup steps

Invalid:

  • added backend changes
  • wip
  • Fix bug

Contributor Coordination Rule

When expressing interest in an issue, include an ETA of no more than 2 days so maintainers can coordinate work efficiently.