From 7d4f00fcfd5a515fe17de824bd47558a43bf8e9f Mon Sep 17 00:00:00 2001 From: "Dylan R. E. Moonfire" Date: Tue, 30 Nov 2021 20:25:21 -0600 Subject: [PATCH] build(commitlint): extend the length of the lines to play better with semantic release --- commitlint.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/commitlint.config.js b/commitlint.config.js index db74d15..29519fc 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1,3 +1,6 @@ module.exports = { extends: ["@commitlint/config-conventional"], + rules: { + "body-max-line-length": [0], + }, };