From d060a538c4c975007390c0787e8662b4e95ee816 Mon Sep 17 00:00:00 2001 From: Danny Date: Wed, 18 Jan 2023 11:41:09 -0500 Subject: [PATCH] chore(commitlint): increase footer max length (#63) --- commitlint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index 0231a31..a8b4f85 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -16,6 +16,6 @@ module.exports = { extends: ['@commitlint/config-conventional'], rules: { 'scope-case': [2, 'always', ['pascal-case', 'camel-case', 'kebab-case']], - 'footer-max-line-length': [2, 'never'], + 'footer-max-line-length': [2, 'always', Number.POSITIVE_INFINITY], }, };