forked from agroupp/ng-audio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cz-config.js
44 lines (44 loc) · 1.84 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
module.exports = {
types: [
{ value: 'feat', name: '✨ - FEATURE: a new feature' },
{ value: 'fix', name: '🐞 - FIX: a bug fix' },
{
value: 'build',
name: '🔧 - BUILD: changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)'
},
{ value: 'docs', name: '📝 - DOCS: documentation only changes' },
{
value: 'style',
name: '🎨 - STYLE: changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) '
},
{
value: 'refactor',
name: '👷 - REFACTOR: a code change that neither fixes a bug nor adds a feature'
},
{
value: 'perf',
name: '⚡️ - PERFORMANCE: code change that improves performance'
},
{
value: 'ci',
name: '💨 - CONTINUOUS INTEGRATION: changes that affect either the build or deployment process'
},
{
value: 'test',
name: '✅ - TEST: adding missing tests or correcting existing test'
}
],
scopes: [{ name: 'workspace' }, { name: 'core' }, { name: 'visualization' }, { name: 'shared' }, { name: 'utils' }, { name: 'demo' }],
messages: {
body: '📚 - Provide a LONGER description of the change (optional). Use "|" to break new line:\n',
breaking: '💥 - List any BREAKING CHANGES (optional):\n',
confirmCommit: '☑️ - Are you sure you want to proceed with the commit above?',
customScope: '⤴️ - Denote the SCOPE of this change, e.g. file name or module:',
footer: '📌 - List any ISSUES CLOSED by this change (optional). E.g.: #31, #34:\n',
subject: '✏️ - Write a SHORT, IMPERATIVE tense description of the change:\n',
type: "ℹ️ - Select the type of change that you're committing:"
},
allowBreakingChanges: ['feat', 'fix'],
allowCustomScopes: true,
subjectLimit: 82
};