Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 758 Bytes

File metadata and controls

29 lines (20 loc) · 758 Bytes

Copilot Commit Message Instructions

Follow the Conventional Commits specification: https://www.conventionalcommits.org/

Format

<type>(<scope>): <subject>

[optional body]

[optional footer]

Types

  • feat: a new feature
  • fix: a bug fix
  • docs: documentation changes only
  • style: formatting, missing semicolons, etc. (no logic change)
  • refactor: code restructuring without behaviour change
  • test: adding or updating tests
  • chore: build process, dependency updates, tooling

Rules

  • Use the imperative mood in the subject ("add feature" not "added feature")
  • Do not end the subject line with a period
  • Separate subject from body with a blank line
  • Wrap body lines at 72 characters
  • Use the body to explain what and why, not how