From 379ebbc8b53e9559c4e582346076fd8429808a03 Mon Sep 17 00:00:00 2001 From: Matthew Mallimo Date: Tue, 17 Jan 2023 11:10:16 -0500 Subject: [PATCH] chore(commitlint): disable footer length limit (#61) --- commitlint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index 7294e4f..0231a31 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, 'always', 120], + 'footer-max-line-length': [2, 'never'], }, };