From f5220ecb165bcf593e17a687f923cd5f7504dbe5 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 4 Oct 2023 17:10:11 +0200 Subject: [PATCH] ci: disable body length msg in commitlint --- commitlint.config.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 commitlint.config.js diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 00000000..8174613e --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1,8 @@ +// custom rules for commitlint + +module.exports = { + extends: ['@commitlint/config-conventional'], + rules: { + 'body-max-line-length': [2, 'always', '*'], + }, +};