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