From 398824071c7d9fae51e0522904fe596046c6cd2c Mon Sep 17 00:00:00 2001 From: nmccready Date: Thu, 12 Sep 2024 16:32:54 -0400 Subject: [PATCH] chore: commitlint config --- commitlint.config.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 commitlint.config.js diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 0000000..f8e4a00 --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1,6 @@ +module.exports = { + extends: ['@commitlint/config-conventional'], + rules: { + 'body-max-line-length': [2, 'always', 200], + }, +};