mirror of
https://github.com/d4rken-org/capod.git
synced 2026-09-14 18:26:11 -04:00
1.2 KiB
1.2 KiB
description
| description |
|---|
| Git commit message format and conventions |
Commit Guidelines
Format
<prefix>: <Short summary>
Summary line should be concise and describe the change. No period at the end.
Prefixes
Use the existing commit history as reference. Common prefixes:
- fix: Bug fixes (e.g.,
fix: Handle display cutouts in landscape mode) - feat: New features
- refactor: Code restructuring without behavior change
- ui: Visual/layout-only tweaks that aren't a full feature or refactor (e.g.,
ui(overview): ...) - chore: Maintenance, dependency updates, build config
- docs: Documentation changes
Component Scope (optional)
When a change is scoped to a specific area, include it after the prefix:
fix(widget): Fix layout for devices with single charge detectionfeat(monitor): Add battery level cachingrefactor(popup): Extract pod view factory
Rules
- Keep the summary line under 72 characters
- Use imperative mood ("Add feature" not "Added feature")
- Reference issue numbers when applicable
- Do not include
Co-authored-bytrailers - Look at recent
git logoutput to match the project's existing style