commit | 462e40f23b4db0e1d127c61ad32527cde028780d | [log] [tgz] |
---|---|---|
author | Shahbaz Youssefi <syoussefi@chromium.org> | Thu Jun 04 14:15:59 2020 -0400 |
committer | Commit Bot <commit-bot@chromium.org> | Thu Jun 04 19:22:41 2020 +0000 |
tree | 27def0ab5c10449e5b99acdcad4289777126cbc7 | |
parent | b22ecc6fbea24631c2783bf946446d3018421435 [diff] [blame] |
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/+/2230785 Reviewed-by: Manh Nguyen <nguyenmh@google.com> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 9858db9..09baa6b 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py
@@ -44,7 +44,7 @@ whitelist_strings = ['Revert "', 'Roll '] summary_linelength_warning_lower_limit = 65 summary_linelength_warning_upper_limit = 70 - description_linelength_limit = 71 + description_linelength_limit = 72 if input_api.change.issue: git_output = input_api.gerrit.GetChangeDescription(input_api.change.issue)