mirror of
https://gitee.com/antv/g6.git
synced 2024-11-30 02:38:20 +08:00
11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
|
module.exports = {
|
||
|
extends: ['@commitlint/config-conventional'],
|
||
|
rules: {
|
||
|
'type-enum': [
|
||
|
2,
|
||
|
'always',
|
||
|
['build', 'chore', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test', 'wip'],
|
||
|
],
|
||
|
},
|
||
|
};
|