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', '*'], + }, +};