From 07c3cb2f13f0956c5ce7f0ea76a2f65da93e616f Mon Sep 17 00:00:00 2001 From: YunaiV Date: Tue, 18 Nov 2025 13:13:20 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E3=80=90ele=E3=80=91=E3=80=90crm?= =?UTF-8?q?=E3=80=91receivable=20=E5=AE=8C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/commit-convention.md | 89 ------------------- .../src/views/crm/receivable/detail/index.vue | 1 - .../crm/receivable/detail/modules/info.vue | 2 +- .../src/views/crm/receivable/index.vue | 2 +- .../crm/receivable/plan/detail/index.vue | 5 +- .../receivable/plan/detail/modules/info.vue | 2 +- .../views/crm/clue/detail/modules/info.vue | 2 +- .../src/views/crm/receivable/detail/index.vue | 3 +- .../crm/receivable/detail/modules/info.vue | 4 +- .../src/views/crm/receivable/index.vue | 14 ++- .../crm/receivable/plan/detail/index.vue | 5 +- .../src/views/crm/receivable/plan/index.vue | 14 ++- 12 files changed, 32 insertions(+), 111 deletions(-) delete mode 100644 .github/commit-convention.md diff --git a/.github/commit-convention.md b/.github/commit-convention.md deleted file mode 100644 index a1a969e99..000000000 --- a/.github/commit-convention.md +++ /dev/null @@ -1,89 +0,0 @@ -## Git Commit Message Convention - -> This is adapted from [Angular's commit convention](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular). - -#### TL;DR: - -Messages must be matched by the following regex: - -```js -/^(revert: )?(feat|fix|docs|style|refactor|perf|test|workflow|build|ci|chore|types|wip): .{1,50}/; -``` - -#### Examples - -Appears under "Features" header, `dev` subheader: - -``` -feat(dev): add 'comments' option -``` - -Appears under "Bug Fixes" header, `dev` subheader, with a link to issue #28: - -``` -fix(dev): fix dev error - -close #28 -``` - -Appears under "Performance Improvements" header, and under "Breaking Changes" with the breaking change explanation: - -``` -perf(build): remove 'foo' option - -BREAKING CHANGE: The 'foo' option has been removed. -``` - -The following commit and commit `667ecc1` do not appear in the changelog if they are under the same release. If not, the revert commit appears under the "Reverts" header. - -``` -revert: feat(compiler): add 'comments' option - -This reverts commit 667ecc1654a317a13331b17617d973392f415f02. -``` - -### Full Message Format - -A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**: - -``` -(): - - - -