Submitter | timeless@mozdev.org |
---|---|
Date | Jan. 12, 2016, 8:56 a.m. |
Message ID | <c686621f7ac9981d33d2.1452588993@waste.org> |
Download | mbox | patch |
Permalink | /patch/12688/ |
State | Accepted |
Commit | b2479d305c1049a7a9ac01a78074fe7c38bde085 |
Headers | show |
Comments
Patch
diff --git a/contrib/check-commit b/contrib/check-commit --- a/contrib/check-commit +++ b/contrib/check-commit @@ -29,7 +29,7 @@ (r"^# [^\n]*\n\S*[^A-Za-z0-9-]\S*: ", "summary keyword should be most user-relevant one-word command or topic"), (r"^# .*\n.*\.\s+$", "don't add trailing period on summary line"), - (r"^# .*\n[^#].{77,}", "summary line too long (limit is 78)"), + (r"^# .*\n[^#].{78,}", "summary line too long (limit is 78)"), (r"^\+\n \n", "adds double empty line"), (r"^ \n\+\n", "adds double empty line"), (r"^\+[ \t]+def [a-z]+_[a-z]", "adds a function with foo_bar naming"),