@@ -11,7 +11,11 @@ module.exports = {
11
11
'subject-full-stop' : [ 2 , 'never' , '.' ] ,
12
12
'type-case' : [ 2 , 'always' , 'lower-case' ] ,
13
13
'type-empty' : [ 2 , 'never' ] ,
14
- 'type-enum' : [ 2 , 'always' , [ 'build' , 'chore' , 'ci' , 'docs' , 'feat' , 'fix' , 'perf' , 'refactor' , 'revert' , 'style' , 'test' ] ] ,
14
+ 'type-enum' : [
15
+ 2 ,
16
+ 'always' ,
17
+ [ 'build' , 'chore' , 'ci' , 'docs' , 'feat' , 'fix' , 'perf' , 'refactor' , 'revert' , 'style' , 'test' ]
18
+ ]
15
19
} ,
16
20
prompt : {
17
21
questions : {
@@ -21,87 +25,91 @@ module.exports = {
21
25
feat : {
22
26
description : 'A new feature' ,
23
27
title : 'Features' ,
24
- emoji : '✨' ,
28
+ emoji : '✨'
25
29
} ,
26
30
fix : {
27
31
description : 'A bug fix' ,
28
32
title : 'Bug Fixes' ,
29
- emoji : '🐛' ,
33
+ emoji : '🐛'
30
34
} ,
31
35
docs : {
32
36
description : 'Documentation only changes' ,
33
37
title : 'Documentation' ,
34
- emoji : '📚' ,
38
+ emoji : '📚'
35
39
} ,
36
40
style : {
37
- description : 'Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)' ,
41
+ description :
42
+ 'Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)' ,
38
43
title : 'Styles' ,
39
- emoji : '💎' ,
44
+ emoji : '💎'
40
45
} ,
41
46
refactor : {
42
47
description : 'A code change that neither fixes a bug nor adds a feature' ,
43
48
title : 'Code Refactoring' ,
44
- emoji : '📦' ,
49
+ emoji : '📦'
45
50
} ,
46
51
perf : {
47
52
description : 'A code change that improves performance' ,
48
53
title : 'Performance Improvements' ,
49
- emoji : '🚀' ,
54
+ emoji : '🚀'
50
55
} ,
51
56
test : {
52
57
description : 'Adding missing tests or correcting existing tests' ,
53
58
title : 'Tests' ,
54
- emoji : '🚨' ,
59
+ emoji : '🚨'
55
60
} ,
56
61
build : {
57
- description : 'Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)' ,
62
+ description :
63
+ 'Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)' ,
58
64
title : 'Builds' ,
59
- emoji : '🛠' ,
65
+ emoji : '🛠'
60
66
} ,
61
67
ci : {
62
- description : 'Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)' ,
68
+ description :
69
+ 'Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)' ,
63
70
title : 'Continuous Integrations' ,
64
- emoji : '⚙️' ,
71
+ emoji : '⚙️'
65
72
} ,
66
73
chore : {
67
74
description : "Other changes that don't modify src or test files" ,
68
75
title : 'Chores' ,
69
- emoji : '♻️' ,
76
+ emoji : '♻️'
70
77
} ,
71
78
revert : {
72
79
description : 'Reverts a previous commit' ,
73
80
title : 'Reverts' ,
74
- emoji : '🗑' ,
75
- } ,
76
- } ,
81
+ emoji : '🗑'
82
+ }
83
+ }
77
84
} ,
78
85
scope : {
79
- description : 'What is the scope of this change (e.g. component or file name)' ,
86
+ description : 'What is the scope of this change (e.g. component or file name)'
80
87
} ,
81
88
subject : {
82
- description : 'Write a short, imperative tense description of the change' ,
89
+ description : 'Write a short, imperative tense description of the change'
83
90
} ,
84
91
body : {
85
- description : 'Provide a longer description of the change' ,
92
+ description : 'Provide a longer description of the change'
86
93
} ,
87
94
isBreaking : {
88
- description : 'Are there any breaking changes?' ,
95
+ description : 'Are there any breaking changes?'
89
96
} ,
90
97
breakingBody : {
91
- description : 'A BREAKING CHANGE commit requires a body. Please enter a longer description of the commit itself' ,
98
+ description : 'A BREAKING CHANGE commit requires a body. Please enter a longer description of the commit itself'
92
99
} ,
93
100
breaking : {
94
- description : 'Describe the breaking changes' ,
101
+ description : 'Describe the breaking changes'
95
102
} ,
96
103
isIssueAffected : {
97
- description : 'Does this change affect any open issues?' ,
104
+ description : 'Does this change affect any open issues?'
98
105
} ,
99
106
issuesBody : {
100
- description : 'If issues are closed, the commit requires a body. Please enter a longer description of the commit itself' ,
107
+ description :
108
+ 'If issues are closed, the commit requires a body. Please enter a longer description of the commit itself'
101
109
} ,
102
110
issues : {
103
- description : 'Add issue references (e.g. "fix #123", "re #123".)' ,
104
- } ,
105
- } ,
106
- } ,
107
- }
111
+ description : 'Add issue references (e.g. "fix #123", "re #123".)'
112
+ }
113
+ }
114
+ }
115
+ } ;
0 commit comments