echarts-for-react/.commitlintrc.js
2021-02-07 18:03:59 +08:00

11 lines
241 B
JavaScript

module.exports = {
extends: ['@commitlint/config-angular'],
rules: {
'type-enum': [
2,
'always',
['build', 'chore', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test', 'wip'],
],
},
};