bigScreen/commitlint.config.js
2025-01-14 15:15:54 +08:00

12 lines
268 B
JavaScript

// commit-lint config
export default {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
2,
'always',
['build', 'chore', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test', 'types'],
],
},
};