@gitmoji/commit-types
Version:
gitmoji styles commit types
32 lines (29 loc) • 371 B
text/typescript
export type CommitTypes =
| 'build'
| 'ci'
| 'docs'
| 'feat'
| 'fix'
| 'perf'
| 'refactor'
| 'revert'
| 'style'
| 'test'
| 'wip'
| 'chore';
const types: CommitTypes[] = [
'build',
'ci',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test',
'chore',
'wip',
];
module.exports = types;
export default types;