mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 11:44:40 +08:00
b9095ce939
* 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
12 lines
268 B
JavaScript
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'],
|
|
],
|
|
},
|
|
};
|