From 4bb294abe4d4c681ec95fbd3fcb967b0471ee29f Mon Sep 17 00:00:00 2001 From: koreahghg Date: Sun, 26 Jul 2026 14:45:55 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20commitlint=20body=20=EA=B8=B8=EC=9D=B4?= =?UTF-8?q?=20=EC=A0=9C=ED=95=9C=20dependabot=20=EC=98=88=EC=99=B8=20?= =?UTF-8?q?=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commitlint.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/commitlint.config.js b/commitlint.config.js index 646b0e3..9ab1d56 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -5,5 +5,9 @@ module.exports = { // nouns (NativeWind, GitHub Actions, MMKV), which trip the Latin-script // case heuristics in this rule. 'subject-case': [0], + // Dependabot commit bodies embed unbreakable changelog/diff URLs that + // routinely exceed 100 chars; human commits in this repo are subject-only + // with no body, so this rule has no effect on them anyway. + 'body-max-line-length': [0], }, };