1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-04-14 18:30:30 +08:00

feat: 移除release命令发布流程时的commitlint配置文件

This commit is contained in:
142vip.cn
2024-09-25 15:51:43 +08:00
parent 9deaaeea47
commit dee351c5a5
2 changed files with 0 additions and 35 deletions

View File

@@ -1,28 +0,0 @@
/**
* commit-and-tag-version 模块配置提交、标签功能
* - 使用https://github.com/conventional-changelog/standard-version
* - 配置https://github.com/conventional-changelog/conventional-changelog-config-spec/blob/master/versions/2.2.0/README.md
*/
module.exports = {
header: '# Release history\n\nAll notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n\n<!-- #region recent-alpha -->\n',
releaseCommitMessageFormat: 'chore(release): publish v{{currentTag}}',
types: [
{ type: 'feat', section: 'Features' },
{ type: 'feature', section: 'Features' },
{ type: 'fix', section: 'Bug Fixes' },
{ type: 'perf', section: 'Performance Improvements' },
{ type: 'revert', section: 'Reverts' },
{ type: 'docs', section: 'Documentation', hidden: true },
{ type: 'style', section: 'Styles', hidden: true },
{ type: 'chore', section: 'Miscellaneous Chores', hidden: true },
{ type: 'refactor', section: 'Code Refactoring', hidden: true },
{ type: 'test', section: 'Tests', hidden: true },
{ type: 'build', section: 'Build System', hidden: true },
{ type: 'ci', section: 'Continuous Integration', hidden: true },
],
skip: {
bump: true,
commit: true,
tag: true,
},
}

View File

@@ -1,7 +0,0 @@
/**
* 校验Git Commit信息格式
* 参考https://commitlint.js.org
*/
module.exports = {
extends: ['@commitlint/config-conventional'],
}