Lines Matching full:body
22 name = "body-min-line-count"
28 … options_spec = [IntOption('min-line-count', 1, "Minimum body line count excluding Signed-off-by")]
31 …filtered = [x for x in commit.message.body if not x.lower().startswith("signed-off-by") and x != '…
35 … message = "Commit message body is empty, should at least have {} line(s).".format(min_line_count)
40 name = "body-max-line-count"
46 options_spec = [IntOption('max-line-count', 200, "Maximum body line count")]
49 line_count = len(commit.message.body)
52 …message = "Commit message body contains too many lines ({0} > {1})".format(line_count, max_line_co…
57 …We keep things simple here and just check whether the commit body contains a line that starts with…
61 name = "body-requires-signed-off-by"
69 for line in commit.message.body:
107 violation_message = "Commit message body line exceeds max length ({0}>{1})"
122 name = "body-contains-blocked-tags"