Skip to content

Commit cc217cb

Browse files
authored
Add break as commit type and listed the type of commit in the documentation (#379)
* docs(commits): listed the list of type of commits available
1 parent 8a90ea4 commit cc217cb

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.cz-config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module.exports = {
1919
// sort type values in asc
2020
types: [
2121
{ value: "ast", name: "ast: init, migrate, add, etc" },
22+
{ value: "break", name: "break: changes that break the behaviour of the cli" },
2223
{ value: "chore", name: "chore: Updating deps, docs, linting, etc" },
2324
{ value: "cli", name: "cli: Core CLI things" },
2425
{ value: "docs", name: "docs: Documentation" },

CONTRIBUTING.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,17 @@ format that includes a **type** and a **subject**:
121121
<footer>
122122
```
123123

124+
This is the list of *type* of commits that we accept:
125+
* ast
126+
* chore
127+
* cli
128+
* docs
129+
* feat
130+
* fix
131+
* misc
132+
* tests
133+
* break
134+
124135
The **header** is mandatory.
125136

126137
Any line of the commit message cannot be longer 100 characters. This allows the message to be easier

0 commit comments

Comments
 (0)