This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.cz-config.js
74 lines (74 loc) · 2.22 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
module.exports = {
types: [
{ value: 'feat', name: '🧩 Features: A new feature' },
{ value: 'fix', name: '🐛 Bug Fixes: A bug fix' },
{
value: 'docs',
name: '📚 Documentation: Documentation only changes'
},
{
value: 'style',
name: '💎 Styles: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)'
},
{
value: 'refactor',
name: '📦 Code Refactoring: A code change that neither fixes a bug nor adds a feature'
},
{
value: 'perf',
name: '🚀 Performance Improvements: A code change that improves performance'
},
{
value: 'test',
name: '🔬 Tests: Adding missing tests or correcting existing tests'
},
{
value: 'build',
name: '🛠 Builds: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)'
},
{
value: 'ci',
name: '⚙️ Continuous Integrations: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)'
},
{
value: 'chore',
name: "☕ Chores: Other changes that don't modify src or test files"
},
{ value: 'revert', name: '🗑 Reverts: Reverts a previous commit' },
{ value: 'wip', name: '🏗 WIP: Work in progress' }
],
scopes: [
{ name: 'root' },
{ name: 'core' },
{ name: 'release' },
{ name: 'action-footer' },
{ name: 'alert' },
{ name: 'button' },
{ name: 'checkbox' },
{ name: 'checkbox-field' },
{ name: 'chip' },
{ name: 'currency-text-field' },
{ name: 'dialog' },
{ name: 'divider' },
{ name: 'file-upload' },
{ name: 'form' },
{ name: 'form-group' },
{ name: 'input-field' },
{ name: 'linear-progress' },
{ name: 'link' },
{ name: 'masked-text-field' },
{ name: 'radio' },
{ name: 'radio-group-field' },
{ name: 'select-field' },
{ name: 'styles' },
{ name: 'tokens' },
{ name: 'wizard' }
],
allowTicketNumber: false,
isTicketNumberRequired: false,
ticketNumberPrefix: 'NUI-',
ticketNumberRegExp: 'd{1,5}',
allowBreakingChanges: [ 'feat', 'fix' ],
subjectLimit: 100,
usePreparedCommit: true
}