-
Notifications
You must be signed in to change notification settings - Fork 0
/
.commitlintrc.js
115 lines (114 loc) · 3.08 KB
/
.commitlintrc.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
module.exports = {
extends: ['@commitlint/config-angular'],
parserPreset: {
parserOpts: {
headerPattern: /^(.*?)(?:\((.*)\))?:?\s(.*)$/,
headerCorrespondence: ['type', 'scope', 'subject'],
},
},
rules: {
'type-case': [0],
'type-empty': [2, 'never'],
'type-enum': [2, 'always', ['build', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test']],
'scope-empty': [2, 'never'],
'subject-empty': [2, 'never'],
},
prompt: {
settings: {},
skip: ['body', 'footer', 'issues'],
messages: {
skip: 'Enter and skip directly',
max: 'Maximum of %d characters',
min: '%d chars at least',
emptyWarning: 'The content cannot be empty, please re-enter',
upperLimitWarning: 'over limit',
lowerLimitWarning: 'below limit',
},
questions: {
type: {
description: 'Please select the submission type',
enum: {
feat: {
description: '🚀 A new feature',
title: 'feat',
emoji: '🚀',
},
fix: {
description: '🐛 A bug fix',
title: 'Bug Fixes',
emoji: '🐛',
},
docs: {
description: '📝 Documentation only changes',
title: 'Documentation',
emoji: '📝',
},
style: {
description: '💎 Changes that do not affect the meaning of the code',
title: 'Styles',
emoji: '💎',
},
refactor: {
description: '🌠 A code change that neither fixes a bug nor adds a feature',
title: 'Code Refactoring',
emoji: '🌠',
},
perf: {
description: '⚡️ A code change that improves performance',
title: 'Performance Improvements',
emoji: '⚡️',
},
test: {
description: '✅ Adding missing tests or correcting existing tests',
title: 'Tests',
emoji: '✅',
},
build: {
description: '📦️ Changes that affect the build system or external dependencies',
title: 'build',
emoji: '📦',
},
ci: {
description: '⚙️ Changes to our CI configuration files and scripts',
title: 'Continuous Integrations',
emoji: '⚙️',
},
revert: {
description: '🔂 Reverts a previous commit',
title: 'Reverts',
emoji: '🔂',
},
},
},
scope: {
description: 'Please enter the scope of modification (required)',
},
subject: {
description: 'Please briefly describe the submission (required)',
},
body: {
description: 'Please provide a detailed description (optional)',
},
isBreaking: {
description: 'Is there any breakthrough change?',
},
breakingBody: {
description:
'A destructive change submission requires a subject. Please enter a longer description of the submission itself',
},
breaking: {
description: 'Describe the breaking changes',
},
isIssueAffected: {
description: 'Are there any unresolved issues?',
},
issuesBody: {
description:
'If issues are closed, the commit requires a body. Please enter a longer description of the commit itself',
},
issues: {
description: 'Please enter the problem description',
},
},
},
};