-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cz-config.js
18 lines (18 loc) · 1001 Bytes
/
.cz-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module.exports = {
types: [
{ value: "feat", name: "🎸 feat: A new feature" },
{ value: "fix", name: "🐛 fix: A bug fix" },
{ value: "wip", name: "🕯 wip: Work in progress" },
{ value: "chore", name: "🤖 chore: Build process or auxiliary tool change" },
{ value: "refactor", name: "💡 refactor: A code change that neither fixes a bug or adds a feature" },
{ value: "style", name: "💄 style: Markup, white-space, formatting, missing semi-colons..." },
{ value: "test", name: "💍 test: Adding missing tests" },
{ value: "perf", name: "💪 perf: A code change that improves performance" },
{ value: "docs", name: "✏️ docs: Documentation only changes" },
{ value: "ci", name: "🕹️ ci: CI related changes" },
{ value: "revert", name: "🔥 revert: Revert to a commit" },
],
allowCustomScopes: true,
skipQuestions: ["footer"],
allowBreakingChanges: ["feat", "fix", "revert", "refactor"],
};