From 4fbee80653f0a97b74e48d590fe3cd5475a887eb Mon Sep 17 00:00:00 2001 From: bendtherules Date: Mon, 5 Oct 2020 20:26:29 +0530 Subject: [PATCH] config(misc): commitlint.config.js - Increase body-line-length limit to 300 --- commitlint.config.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/commitlint.config.js b/commitlint.config.js index 6bc3a3d..8db990c 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -18,7 +18,8 @@ module.exports = { "test", ], ], - "scope-enum": [1, "always", ["app", "completion", "source", "types", "engine262", "misc"]], - "subject-case": [0, "always"] + "scope-enum": [2, "always", ["app", "completion", "source", "types", "engine262", "misc"]], + "subject-case": [0, "always"], + "body-max-line-length": [1, "always", 300] }, };