first commit

This commit is contained in:
DEV_DSW
2026-01-28 11:49:55 +08:00
commit 52a8ea4bd5
34 changed files with 5025 additions and 0 deletions

22
commitlint.config.js Normal file
View File

@@ -0,0 +1,22 @@
/**
* feat新功能
* fix修补bug
* refactor重构某个功能
* revert: 回滚到上一个版本
* style仅样式改动
* docs仅文档新增/改动
* chore构建过程或辅助工具的变动
*/
module.exports = {
extends: [
// 直接继承官网规则
'@commitlint/config-conventional'
],
rules: {
'type-enum': [
2,
'always',
['feat', 'fix', 'refactor', 'revert', 'style', 'docs', 'chore']
]
}
}