fix(commitlint): fix header length at 72 chars as agreed

at WG meeting. Fix body/header length to 120 after further discussion.
This commit is contained in:
Dafydd Jones 2020-09-28 00:05:21 +01:00
parent e668832b76
commit a95061ddd0

View file

@ -1,3 +1,8 @@
module.exports = {
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],
},
};