mirror of
https://github.com/apotdevin/thunderhub.git
synced 2024-11-19 09:50:03 +01:00
16 lines
675 B
JavaScript
16 lines
675 B
JavaScript
module.exports = {
|
|
types: [
|
|
{ type: 'feat', section: 'Features', hidden: false },
|
|
{ type: 'chore', section: 'Improvements', hidden: false },
|
|
{ type: 'fix', section: 'Bug Fixes', hidden: false },
|
|
{ type: 'refactor', section: 'Refactoring', hidden: false },
|
|
{ type: 'perf', section: 'Performance', hidden: false },
|
|
{ type: 'revert', section: 'Reverts', hidden: false },
|
|
{ type: 'docs', section: 'Docs', hidden: false },
|
|
{ type: 'style', section: 'Styling', hidden: false },
|
|
{ type: 'test', section: 'Tests', hidden: false },
|
|
{ type: 'build', section: 'Build', hidden: false },
|
|
{ type: 'ci', section: 'CI', hidden: false },
|
|
],
|
|
};
|