1
0
Fork 0

chore(commitlint): add `{body,footer,header}-max(-line)-length` [skip ci]

* Automated using https://github.com/myii/ssf-formula/pull/265
This commit is contained in:
Dafydd Jones 2020-10-07 09:10:28 +01:00 committed by Imran Iqbal
parent 95e7e81182
commit f53639a487
No known key found for this signature in database
GPG Key ID: 6D8629439D2B7819
1 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,8 @@
module.exports = { module.exports = {
extends: ['@commitlint/config-conventional'], extends: ['@commitlint/config-conventional'],
rules: {
'body-max-line-length': [2, 'always', 120],
'footer-max-line-length': [2, 'always', 120],
'header-max-length': [2, 'always', 72],
},
}; };