From 53109c55fcfa110815aea60869231cc4f5cc5e2c Mon Sep 17 00:00:00 2001 From: JooYoung Seo Date: Thu, 1 Feb 2024 18:18:15 -0600 Subject: [PATCH] ci: :wrench: increase the footer length rule in commitlint --- commitlint.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/commitlint.config.js b/commitlint.config.js index 84dcb122a..1b65ba7a2 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1,3 +1,6 @@ module.exports = { extends: ['@commitlint/config-conventional'], + rules: { + 'footer-max-line-length': [2, 'always', 200], + }, };