You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'description': 'Select the type of change that you\'re committing',
40
40
'enum': {
41
41
'feat': {
42
-
'description': 'A new feature',
42
+
'description': 'New feature',
43
43
'title': 'Features',
44
44
'emoji': '✨'
45
45
},
46
46
'fix': {
47
-
'description': 'A bug fix, including changes to the behavior of existing features and including changes that remove or mitigate security vulnerabilities',
47
+
'description': 'Bug fix, including changes to the behavior of existing features and including changes that remove or mitigate security vulnerabilities',
48
48
'title': 'Bug Fixes',
49
49
'emoji': '🐛'
50
50
},
51
51
'remove': {
52
-
'description': 'A change that removes a feature',
52
+
'description': 'Remove feature',
53
53
'title': 'Removed Features',
54
54
'emoji': '🗑'
55
55
},
56
56
'deprecate': {
57
-
'description': 'A change that deprecates an existing feature',
57
+
'description': 'Deprecate feature',
58
58
'title': 'Deprecations',
59
59
'emoji': '⚠️'
60
60
},
61
61
'perf': {
62
-
'description': 'A change that improves performance',
'description': 'A change affecting how the project is built and released, including changes to automation and CI configuration files and scripts',
82
+
'description': 'Update how the project is built and released, including changes to automation and CI configuration files and scripts',
83
83
'title': 'Build Changes',
84
84
'emoji': '🛠'
85
85
},
86
86
'refactor': {
87
-
'description': 'A change that is neither a fix nor a feature (i.e., a change which does not affect behavior as experienced by downstream consumers',
87
+
'description': 'Neither a fix nor a feature (i.e., a change which does not affect behavior as experienced by downstream consumers',
88
88
'title': 'Code Refactoring',
89
89
'emoji': '🚧'
90
90
},
91
91
'style': {
92
-
'description': 'A change that improves code style (e.g., whitespace, formatting, semilcolons, etc) and does not affect the meaning of code',
92
+
'description': 'Improve code style, including changes to whitespace, formatting, semicolons, etc, which do not affect the meaning of code',
93
93
'title': 'Style Updates',
94
94
'emoji': '💎'
95
95
},
96
96
'chore': {
97
-
'description': 'A change that is neither a fix, a feature, nor a refactor (i.e., a repetitive mechanical task, such as updating package meta data or updating external dependencies)',
97
+
'description': 'Neither a fix, a feature, nor a refactor (i.e., a repetitive mechanical task, such as updating package meta data or updating external dependencies)',
98
98
'title': 'Chores',
99
99
'emoji': '🧺'
100
100
},
101
101
'temp': {
102
-
'description': 'A temporary, experimental, or exploratory change that is not intended to be permanent (e.g., as may be desired when debugging CI or when ad-hoc debugging on live systems)',
102
+
'description': 'Temporary, experimental, or exploratory change that is not intended to be permanent (e.g., as may be desired when debugging CI or when ad-hoc debugging on live systems)',
0 commit comments