ci: allow longer commit messages in commitlint (#346)

This commit is contained in:
Vojtech Simetka
2022-04-22 17:49:25 +05:00
committed by GitHub
parent 75967b2bf5
commit 39f59fcc07
2 changed files with 8 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'body-max-line-length': [0, 'always', Infinity], // disable commit body length restriction
},
}