We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 860da72 commit 1c24567Copy full SHA for 1c24567
commitizen/commands/check.py
@@ -72,15 +72,15 @@ def __call__(self):
72
raise NoCommitsFoundError(f"No commit found with range: '{self.rev_range}'")
73
74
pattern = self.cz.schema_pattern()
75
- ill_formated_commits = [
+ ill_formatted_commits = [
76
commit
77
for commit in commits
78
if not self.validate_commit_message(commit.message, pattern)
79
]
80
displayed_msgs_content = "\n".join(
81
[
82
f'commit "{commit.rev}": "{commit.message}"'
83
- for commit in ill_formated_commits
+ for commit in ill_formatted_commits
84
85
)
86
if displayed_msgs_content:
0 commit comments