Files
retry/.config/.commitlintrc.js

11 lines
234 B
JavaScript
Raw Normal View History

module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
2,
'always',
['feat', 'fix', 'docs', 'style', 'refactor', 'test', 'revert', 'patch', 'minor', 'major'],
],
},
};