forked from Burak-Atak/BB-TR-Kaynak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cz-config.js
87 lines (84 loc) · 2.03 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
module.exports = {
types: [
{
value: ':rocket: feat',
name: '🚀 feature:\tIntroducing new features.',
},
{
value: ':bug: fix',
name: '🐛 fix:\tFixing a bug.',
},
{
value: ':memo: docs',
name: '📝 docs:\tAdd or update documentation.',
},
{
value: ':art: style',
name: '🎨 style:\tAdd or update styles, ui or ux.',
},
{
value: ':recycle: refactor',
name: '♻️ refactor:\tCode change that neither fixes a bug nor adds a feature.',
},
{
value: ':zap: perf',
name: '⚡️ perf:\tCode change that improves performance.',
},
{
value: ':white_check_mark: test',
name: '✅ test:\tAdding tests cases.',
},
{
value: ':truck: chore',
name: '🚚 chore:\tChanges to the build process or auxiliary tools\n\t\tand libraries such as documentation generation.',
},
{
value: ':rewind: revert',
name: '⏪️ revert:\tRevert to a commit.',
},
{
value: ':construction: wip',
name: '🚧 wip:\tWork in progress.',
},
{
value: ':construction_worker: build',
name: '👷 build:\tAdd or update regards to build process.',
},
{
value: ':green_heart: ci',
name: '💚 ci:\tAdd or update regards to build process.',
},
],
scopes: [
{ name: 'repo' },
{ name: 'content-docs' },
{ name: 'ui' },
{ name: 'home' },
{ name: 'bug' },
{ name: 'algorithm' },
{ name: 'data-structure' },
{ name: 'git' },
{ name: 'pwa' },
{ name: 'blog' },
{ name: 'sidebar' },
{ name: 'assets' },
{ name: 'contributor' },
{ name: 'URL' },
{ name: 'docusaurus' },
{ name: 'package' },
{ name: 'scopes' },
],
scopeOverrides: {
fix: [
{ name: 'merge' },
{ name: 'style' },
{ name: 'test' },
{ name: 'hotfix' },
],
},
allowCustomScopes: true,
allowBreakingChanges: ['feat', 'fix'],
// skip any questions you want
skipQuestions: ['body'],
subjectLimit: 100,
};