mirror of
https://gitee.com/antv/g6.git
synced 2024-11-29 18:28:19 +08:00
ae95e92140
* refactor: remove unused files, and add husky and commitlint * test: add github action
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'],
|
|
],
|
|
},
|
|
};
|