From 47cec669602d5f3944771c45fefce37e2aa36d10 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 5 Oct 2023 16:48:53 +0200 Subject: [PATCH] ci: disable body length msg in commitlint (#594) --- 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 000000000..8174613eb --- /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', '*'], + }, +};