Skip to content

Commit 178cb6f

Browse files
committed
Set LintCommit.commitMessageLength check to 80
1 parent 7c3c018 commit 178cb6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/commit-lint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class LintCommit {
7373
}
7474

7575
for (let i = 2; i < this.lines.length; i++) {
76-
if (this.lines[i].length > 72) {
76+
if (this.lines[i].length > 80) {
7777
this.block("Please wrap lines in the body of the commit " +
7878
"message between 60 and 72 characters.");
7979
break;

0 commit comments

Comments
 (0)