| 1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * @Description: angluar commitlint
- * @Author: wsy
- * @Date: 2021-12-17 16:03:11
- * @LastEditTime: 2022-01-07 15:00:54
- * @LastEditors: wsy
- */
- module.exports = {
- extends: ['@commitlint/config-conventional'],
- rules: {
- 'type-enum': [
- 2,
- 'always',
- [
- 'feat',
- 'fix',
- 'perf',
- 'style',
- 'docs',
- 'test',
- 'refactor',
- 'build',
- 'ci',
- 'init',
- 'chore',
- 'revert',
- 'wip',
- 'workflow',
- 'types',
- 'release'
- ]
- ],
- 'subject-case': [0]
- }
- }
|