From 5566289c1a676e1a998ccf2d71942d1b193d872c Mon Sep 17 00:00:00 2001 From: Stanislas Date: Sat, 19 Jun 2021 19:07:45 +0200 Subject: [PATCH] chore: create commitlint.config.js --- 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..28177e5 --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1,6 @@ +module.exports = { + extends: ['@commitlint/config-conventional'], + rules: { + 'body-max-line-length': [1, 'always', 100], + }, +};