From a4f26b4f05dc70a5ce5a815c248b5e3830d49a42 Mon Sep 17 00:00:00 2001 From: Garry O'Donnell Date: Tue, 14 Jan 2025 11:40:15 +0000 Subject: [PATCH] Allow long commit message body lines --- .commitlintrc.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.commitlintrc.json b/.commitlintrc.json index 0df1d25..a43ce11 100644 --- a/.commitlintrc.json +++ b/.commitlintrc.json @@ -1,5 +1,12 @@ { "extends": [ "@commitlint/config-conventional" - ] + ], + "rules": { + "body-max-line-length": [ + 2, + "always", + "Infinity" + ] + } }