Commit 462e40f2 by Shahbaz Youssefi Committed by Commit Bot

Allow lines up to 72 characters in commit messages

72 is the limit, not 71. See: https://stackoverflow.com/a/17792445/912144 Bug: angleproject:4683 Change-Id: Icb53f2d532b9b55e31e3f1593bd2302a3011095e Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2230785Reviewed-by: 's avatarManh Nguyen <nguyenmh@google.com> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
parent b22ecc6f
...@@ -44,7 +44,7 @@ def _CheckCommitMessageFormatting(input_api, output_api): ...@@ -44,7 +44,7 @@ def _CheckCommitMessageFormatting(input_api, output_api):
whitelist_strings = ['Revert "', 'Roll '] whitelist_strings = ['Revert "', 'Roll ']
summary_linelength_warning_lower_limit = 65 summary_linelength_warning_lower_limit = 65
summary_linelength_warning_upper_limit = 70 summary_linelength_warning_upper_limit = 70
description_linelength_limit = 71 description_linelength_limit = 72
if input_api.change.issue: if input_api.change.issue:
git_output = input_api.gerrit.GetChangeDescription(input_api.change.issue) git_output = input_api.gerrit.GetChangeDescription(input_api.change.issue)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment