From d0b8134db9122f644f7e86de5208a0255dd3528a Mon Sep 17 00:00:00 2001 From: robence Date: Tue, 28 May 2024 15:23:04 +0200 Subject: [PATCH] fix: commit rules --- commitlint.config.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index 4fedde6..ae3c890 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1 +1,7 @@ -module.exports = { extends: ['@commitlint/config-conventional'] } +module.exports = { + extends: ['@commitlint/config-conventional'], + rules: { + 'body-max-line-length': [2, 'always', 250], + 'footer-max-line-length': [2, 'always', 2500] + } +}