From fa05dfedbb9b39cda86e4be11fde933688159d57 Mon Sep 17 00:00:00 2001 From: Dustin Strobel Date: Tue, 12 Nov 2024 20:26:29 +0100 Subject: [PATCH] chore: add commitlint config --- commitlint.config.mjs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 commitlint.config.mjs diff --git a/commitlint.config.mjs b/commitlint.config.mjs new file mode 100644 index 0000000..74caa25 --- /dev/null +++ b/commitlint.config.mjs @@ -0,0 +1,6 @@ +export default { + extends: [ '@commitlint/config-conventional'], + rules: { + 'body-max-line-length': [1, 'always', 200], + } +};