Merging upstream version 0.15.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
470a4841cc
commit
3213982697
75 changed files with 1281 additions and 1555 deletions
|
@ -2,8 +2,6 @@
|
|||
|
||||
from gitlint.rules import CommitRule, RuleViolation
|
||||
from gitlint.options import IntOption, ListOption
|
||||
from gitlint import utils
|
||||
|
||||
|
||||
"""
|
||||
Full details on user-defined rules: https://jorisroovers.com/gitlint/user_defined_rules
|
||||
|
@ -37,7 +35,7 @@ class BodyMaxLineCount(CommitRule):
|
|||
line_count = len(commit.message.body)
|
||||
max_line_count = self.options['max-line-count'].value
|
||||
if line_count > max_line_count:
|
||||
message = "Body contains too many lines ({0} > {1})".format(line_count, max_line_count)
|
||||
message = f"Body contains too many lines ({line_count} > {max_line_count})"
|
||||
return [RuleViolation(self.id, message, line_nr=1)]
|
||||
|
||||
|
||||
|
@ -90,8 +88,7 @@ class BranchNamingConventions(CommitRule):
|
|||
break
|
||||
|
||||
if not valid_branch_name:
|
||||
msg = "Branch name '{0}' does not start with one of {1}".format(branch,
|
||||
utils.sstr(allowed_branch_prefixes))
|
||||
msg = f"Branch name '{branch}' does not start with one of {allowed_branch_prefixes}"
|
||||
violations.append(RuleViolation(self.id, msg, line_nr=1))
|
||||
|
||||
return violations
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue