Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/scripts/lintcommit.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,6 @@ def validate_subject(subject_line: str) -> str | None:
if subject.endswith("."):
return "subject must not end with a period"

if subject != subject.lower():
return "subject must be lowercase"

return None


Expand Down
4 changes: 0 additions & 4 deletions .github/scripts/tests/test_lintcommit.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,6 @@ def test_subject_uppercase() -> None:
assert validate_subject("feat: Add new feature") == "subject must be lowercase"


def test_subject_uppercase_acronym_rejected() -> None:
assert validate_subject("ci: configure CI/CD") == "subject must be lowercase"


# region validate_message


Expand Down
Loading