tdesign-vue-next-starter/commitlint.config.js
悠静萝莉 b9095ce939
feat: 将整体代码规范为ESM (#680)
* chore: update deps

mockjs: CVE-2023-26158
vite: CVE-2024-23331

* chore: update deps

* chore: explicit definition type

* chore: update echarts

* feat: change the overall ESM
2024-02-13 18:55:31 +08:00

12 lines
268 B
JavaScript

// commit-lint config
export default {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
2,
'always',
['build', 'chore', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test', 'types'],
],
},
};