-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcz-config.cjs
More file actions
36 lines (36 loc) Β· 1.1 KB
/
cz-config.cjs
File metadata and controls
36 lines (36 loc) Β· 1.1 KB
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
29
30
31
32
33
34
35
36
module.exports = {
types: [
{ value: "π Update", name: "π Update:\tUpdating changes" },
{ value: "π Feat", name: "π Feat:\tAdd a new feature" },
{ value: "π¨ Fix", name: "π¨ Fix:\tFixing a bug" },
{ value: "π Docs", name: "π Docs:\tAdd or update documentation" },
{
value: "π Style",
name: "π Style:\tAdd or update style (CSS, 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",
},
{
value: "βοΈ Remove",
name: "βοΈ Remove:\tRemove files ",
},
{
value: "π§ Rename",
name: "π§ Rename:\tmove file or rename folder names",
},
],
allowCustomScopes: false,
allowBreakingChanges: ["feat", "fix"],
skipQuestions: ["body"],
subjectLimit: 100,
};