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