-
Notifications
You must be signed in to change notification settings - Fork 0
/
cz-config.js
28 lines (28 loc) · 979 Bytes
/
cz-config.js
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
28
module.exports = {
types: [
{ value: "🏗️ WIP", name: "🏗️ WIP:\tWork in progress" },
{ value: "✨ Feat", name: "✨ Feat:\tAdd a new feature" },
{ value: "🐛 Modify", name: "🐛 Fix:\tModify production, UI,UX code" },
{ value: "📝 Docs", name: "📝 Docs:\tAdd or update documentation" },
{
value: "💄 Style",
name: "💄 Style:\tAdd or update code format (not updation production, UI,UX code)",
},
{
value: "🤖 Refactor",
name: "🤖 Refactor:\tCode change that neither fixes a bug nor adds a feature",
},
{
value: "✅ Test",
name: "✅ Test:\tCode change related with tests cases",
},
{
value: "🚚 Chore",
name: "🚚 Chore:\tChanges to the build process or auxiliary tools\n\t\tand libraries such as documentation generation",
},
],
allowCustomScopes: false,
allowBreakingChanges: ["feat", "fix"],
skipQuestions: ["body"],
subjectLimit: 100,
};