From 558a5e7af3b8cad0127b91678af72ae23f1b3997 Mon Sep 17 00:00:00 2001 From: hanshiyang Date: Tue, 23 Sep 2025 10:46:42 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E7=A7=BB=E9=99=A4=20commit-msg=20?= =?UTF-8?q?=E7=9A=84=20git=20hook=20=E6=A3=80=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 简化 git hooks 配置,仅保留 pre-commit 检查 --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index c16e608..88161c8 100644 --- a/package.json +++ b/package.json @@ -68,7 +68,6 @@ "prismjs": "^1.27.0" }, "simple-git-hooks": { - "pre-commit": "npm run lint && npm run type:check", - "commit-msg": "node scripts/verifyCommit.js" + "pre-commit": "npm run lint && npm run type:check" } }