初始化

This commit is contained in:
2026-03-05 21:27:11 +08:00
commit 130de0fd5d
140 changed files with 21972 additions and 0 deletions

11
commitlint.config.ts Normal file
View File

@@ -0,0 +1,11 @@
export default {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [2, 'always', [
'feat', 'fix', 'refactor', 'test', 'docs',
'chore', 'style', 'perf', 'ci', 'build', 'revert',
]],
'subject-max-length': [2, 'always', 100],
'body-max-line-length': [1, 'always', 200],
},
};