Merge pull request #208 from dafyddj/fix/commit-header-length

fix(commitlint): fix header length at 72 chars as agreed
This commit is contained in:
Imran Iqbal 2020-10-06 17:58:32 +01:00 committed by GitHub
commit b5e11b3338
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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