BigScreenUI/.commitlintrc.js

11 lines
247 B
JavaScript
Raw Normal View History

2023-11-30 10:48:06 +08:00
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
2,
'always',
['init', 'build', 'ci', 'chore', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test'],
],
},
};