From 8a4c9f703748234eb2d75c9e58dd7608d15e49e6 Mon Sep 17 00:00:00 2001 From: Merlin Beutlberger Date: Wed, 11 Sep 2024 16:20:37 +0200 Subject: [PATCH] test(commitlint): Disable rule 'footer-max-line-length' To allow for example a URL in the last line --- commitlint.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/commitlint.config.mjs b/commitlint.config.mjs index 5720e8886..53dbeb9e4 100644 --- a/commitlint.config.mjs +++ b/commitlint.config.mjs @@ -22,6 +22,7 @@ export default { ], ], "body-max-line-length": [2, "always", 160], + "footer-max-line-length": [0], "subject-case": [ 2, "always", ["sentence-case", "start-case", "pascal-case"],