From fa857b9752816f3a28eea891b5fcdafbbece7920 Mon Sep 17 00:00:00 2001 From: Martin Marosi Date: Mon, 9 Dec 2024 10:20:54 +0100 Subject: [PATCH] chore: remove description length limits --- .commitlintrc.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.commitlintrc.js b/.commitlintrc.js index 7b51e0199..5310c98ba 100644 --- a/.commitlintrc.js +++ b/.commitlintrc.js @@ -3,4 +3,6 @@ module.exports ={ // Ignore rules can be found here // https://github.com/conventional-changelog/commitlint/blob/master/%40commitlint/is-ignored/src/defaults.ts defaultIgnores: true, + 'body-max-length': Infinity, + 'body-max-line-length': Infinity, }