Skip to content

Commit 64dd28b

Browse files
author
Guillaume Gautreau
committed
chore: merge branch 'ci/allow-longer-commit-messages' into chore/merge-master-into-beta
2 parents cd6497a + 07fcca4 commit 64dd28b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

commitlint.config.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ if (isPushEvent) {
1414
}
1515

1616
module.exports = {
17-
extends: ['@commitlint/config-conventional'],
18-
'header-max-length': [1, 'always', maxLineLength],
19-
'body-max-line-length': [1, 'always', maxLineLength],
20-
'footer-max-line-length': [1, 'always', maxLineLength],
17+
extends: ['@commitlint/config-conventional'],
18+
rules: {
19+
'header-max-length': [1, 'always', maxLineLength],
20+
'body-max-line-length': [1, 'always', maxLineLength],
21+
'footer-max-line-length': [1, 'always', maxLineLength],
22+
}
2123
};

0 commit comments

Comments
 (0)