12345678910111213141516171819202122 |
- module.exports = {
- extends: ['@commitlint/config-conventional'],
- rules: {
- 'type-enum': [
- 2,
- 'always',
- [
- 'feat',
- 'fix',
- 'docs',
- 'style',
- 'refactor',
- 'perf',
- 'test',
- 'chore',
- 'revert',
- 'build'
- ]
- ],
- 'subject-case': [0]
- }
- };
|