forked from orefalo/svelte-splitpanes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cz-config.cjs
48 lines (46 loc) · 1.29 KB
/
.cz-config.cjs
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
37
38
39
40
41
42
43
44
45
46
47
48
module.exports = {
types: [
{ value: 'feat', name: '✨ feat:\tAdding 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 styles, ui or ux'
},
{
value: 'refactor',
name: '♻️ refactor:\tCode change that neither fixes a bug nor adds a feature'
},
{
value: 'perf',
name: '⚡️ perf:\tCode change that improves performance'
},
{
value: 'test',
name: '✅ test:\tAdding tests cases'
},
{
value: 'chore',
name: '🚚 chore:\tChanges to the build process or auxiliary tools\n\t\tand libraries such as documentation generation'
},
{ value: 'revert', name: '⏪️ revert:\tRevert to a commit' },
{ value: 'wip', name: '🚧 wip:\tWork in progress' },
{
value: 'build',
name: '👷 build:\tAdd or update regards to build process'
},
{
value: 'ci',
name: '💚 ci:\tAdd or update regards to build process'
}
],
scopes: [],
scopeOverrides: {
fix: [{ name: 'merge' }, { name: 'style' }, { name: 'test' }, { name: 'hotfix' }]
},
allowCustomScopes: true,
allowBreakingChanges: ['feat', 'fix'],
// skip any questions you want
skipQuestions: ['scope', 'footer', 'breaking'],
subjectLimit: 100
};