From d520e82699d6e9cc01f8ef57867741e3a892b530 Mon Sep 17 00:00:00 2001 From: Richard Attermeyer Date: Sun, 28 Jan 2024 20:39:06 +0000 Subject: [PATCH] style: update body length rule --- commitlint.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index 4fedde6..7edbc66 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1 +1,5 @@ -module.exports = { extends: ['@commitlint/config-conventional'] } +module.exports = { extends: ['@commitlint/config-conventional'], + "rules": { + "body-max-line-length": () => [0, "always", 200] + } + }