-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommitizen.config.js
More file actions
40 lines (40 loc) · 1.02 KB
/
Copy pathcommitizen.config.js
File metadata and controls
40 lines (40 loc) · 1.02 KB
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
module.exports = {
types: [
{ value: 'feat', name: 'feat:\tAdding a new feature' },
{ value: 'fix', name: 'fix:\tFixing a bug' },
{
value: 'style',
name: 'style: Add or update styles',
},
{
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 / adds missing tests',
},
{
value: 'chore',
name: 'chore:\tChanges to the build process or auxiliary tools',
},
{ value: 'revert', name: 'revert:\tRevert to a commit' },
],
scopes: [
{ name: 'api' },
{ name: 'lambda' },
{ name: 'authorizer' },
{ name: 'observability' },
{ name: 'infrastructure' },
{ name: 'documentation' },
{ name: 'ci' },
],
allowCustomScopes: true,
allowBreakingChanges: ['feat', 'fix', 'perf', 'refactor'],
subjectLimit: 100,
skipQuestions: ['body'],
};