From 61fbfa2eef58acb6dc2c9fe825ba3893b4e19525 Mon Sep 17 00:00:00 2001 From: Sachin Kumar Date: Fri, 10 Jun 2022 09:07:59 +0530 Subject: [PATCH 1/2] chore: disable commit message length check --- commitlint.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/commitlint.config.js b/commitlint.config.js index 69b4242c..e93680af 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1,3 +1,7 @@ module.exports = { extends: ["@commitlint/config-conventional"], + rules: { + "header-max-length": [0], + "body-max-line-length": [0], + }, }; From 1889e31f136c006372a916f5b02e5c6e6a0d8796 Mon Sep 17 00:00:00 2001 From: Sachin Kumar Date: Fri, 10 Jun 2022 09:13:04 +0530 Subject: [PATCH 2/2] chore: disable commit message length check --- commitlint.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commitlint.config.js b/commitlint.config.js index e93680af..86a8e2df 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -3,5 +3,6 @@ module.exports = { rules: { "header-max-length": [0], "body-max-line-length": [0], + "footer-max-line-length": [0], }, };