From 3665a209fc6b3b56b05b9659048578cdb5d8a885 Mon Sep 17 00:00:00 2001 From: Sachin Kumar Date: Mon, 13 Jun 2022 06:16:59 +0530 Subject: [PATCH] chore: disable commit message length check (#950) --- 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], + }, };