You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+33-10Lines changed: 33 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -129,20 +129,43 @@ dotnet test Tests/Confuser.CLI.Test/Confuser.CLI.Test.csproj -c Release --collec
129
129
130
130
Every PR receives an automatic coverage comment showing per-assembly line and branch coverage. The full HTML drill-down report is downloadable as the `coverage-report` artifact from the test workflow.
131
131
132
-
## Commit Conventions
133
-
134
-
We use [Conventional Commits](https://www.conventionalcommits.org/):
132
+
## Commit Format
135
133
136
134
```
137
-
feat(scope): add new feature
138
-
fix(scope): fix a bug
139
-
test(scope): add or update tests
140
-
refactor(scope): code change that doesn't fix a bug or add a feature
141
-
chore(scope): build, CI, dependency updates
142
-
docs(scope): documentation changes
135
+
<type>: <short description>
136
+
137
+
[optional body — what changed and why]
143
138
```
144
139
145
-
Always reference the issue number: `fix(renamer): handle FnPtr types (#6)`
140
+
**Types** — full words, matching branch naming:
141
+
142
+
| Type | When to use |
143
+
|------|-------------|
144
+
|`feature`| New feature or capability added |
145
+
|`fix`| Bug fix |
146
+
|`test`| Adding or updating tests |
147
+
|`refactor`| Code change that neither fixes a bug nor adds a feature |
0 commit comments