Skip to content

Commit

Permalink
feat(new): 新的commit限制的配置文件
Browse files Browse the repository at this point in the history
  • Loading branch information
lsewcx committed Jul 16, 2024
1 parent 2c9f1a2 commit 1efc67b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ module.exports = {
'mod', // 不确定分类的修改
'wip', // 开发中
'types', // 类型修改
'release' // 版本发布
'release',// 版本发布
'deps', // 依赖更新
'auth', // 授权相关
'lint', // 代码风格
'i18n', // 国际化
'other' // 其他修改
]
],
'subject-full-stop': [0, 'never'],
Expand Down
7 changes: 6 additions & 1 deletion github.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,12 @@ def write_commitlint_config():
'mod', // 不确定分类的修改
'wip', // 开发中
'types', // 类型修改
'release' // 版本发布
'release',// 版本发布
'deps', // 依赖更新
'auth', // 授权相关
'lint', // 代码风格
'i18n', // 国际化
'other' // 其他修改
]
],
'subject-full-stop': [0, 'never'],
Expand Down

0 comments on commit 1efc67b

Please sign in to comment.