mirror of
https://github.com/azaion/detections.git
synced 2026-04-22 21:56:33 +00:00
320683a1fd
- Revised coding rules to emphasize readability, meaningful comments, and maintainability. - Adjusted thresholds for test coverage on business logic from 80% to 75%, aligning with the new quality standards. - Enhanced guidelines for handling skipped tests, introducing classifications for legitimate and illegitimate skips. - Updated the requirements for test scenarios to ensure every test has a clear pass/fail criterion. Made-with: Cursor
12 lines
654 B
Plaintext
12 lines
654 B
Plaintext
---
|
|
description: "Git workflow: work on dev branch, commit message format with tracker IDs"
|
|
alwaysApply: true
|
|
---
|
|
# Git Workflow
|
|
|
|
- Work on the `dev` branch
|
|
- Commit message subject line format: `[TRACKER-ID-1] [TRACKER-ID-2] Summary of changes`
|
|
- Subject line must not exceed 72 characters (standard Git convention for the first line). The 72-char limit applies to the subject ONLY, not the full commit message.
|
|
- A commit message body is optional. Add one when the subject alone cannot convey the why of the change. Wrap the body at 72 chars per line.
|
|
- Do NOT push or merge unless the user explicitly asks you to. Always ask first if there is a need.
|