-
Notifications
You must be signed in to change notification settings - Fork 29
/
cz.config.js
29 lines (29 loc) · 962 Bytes
/
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
/** @type {import('cz-git').UserConfig['prompt']} */
module.exports = {
types: [
{ value: 'feat', name: 'feat: A new feature', emoji: ':sparkles:' },
{ value: 'fix', name: 'fix: A bug fix', emoji: ':bug:' },
{ value: 'docs', name: 'docs: Documentation only changes', emoji: ':memo:' },
{
value: 'refactor',
name: 'refactor: A code change that neither fixes a bug nor adds a feature',
emoji: ':recycle:',
},
{ value: 'perf', name: 'perf: A code change that improves performance', emoji: ':zap:' },
{
value: 'testing',
name: 'testing: Adding missing tests or correcting existing tests',
emoji: ':white_check_mark:',
},
{ value: 'chore', name: "chore: Other changes that don't modify src or test files", emoji: ':hammer:' },
],
scopes: [
{ name: 'core' },
{ name: 'soba' },
{ name: 'cannon' },
{ name: 'postprocessing' },
{ name: 'plugin' },
{ name: 'docs' },
{ name: 'testing' },
],
};