-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommit.yml
More file actions
27 lines (22 loc) · 717 Bytes
/
Copy pathcommit.yml
File metadata and controls
27 lines (22 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Minimal ace-git-commit configuration
# Copy to .ace/git/commit.yml and customize for your project
git:
# LLM model for commit message generation
model: role:commit # or gpt4, claude, etc. - must match provider alias
# Commit message conventions
conventions:
format: conventional # conventional, simple, or detailed
scopes:
enabled: true
detect_from_paths: true
# Add your project-specific scopes
custom:
- core
- api
- ui
- docs
- test
split:
enabled: true
strategy: config-scope
description: Automatically create multiple commits when multiple config scopes are detected; use --no-split to force a single commit.