-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcz-config.js
36 lines (36 loc) · 1.1 KB
/
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
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,
};