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
4 changes: 2 additions & 2 deletions commit_check/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@

# Handle different default values for different rules
DEFAULT_BOOLEAN_RULES = {
"subject_capitalized": True,
"subject_imperative": True,
"subject_capitalized": False,
"subject_imperative": False,
"allow_merge_commits": True,
"allow_revert_commits": True,
"allow_empty_commits": True,
Expand Down
2 changes: 1 addition & 1 deletion commit_check/imperatives.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"adjust",
"aggregate",
"allow",
"append",
"alignappend",
"apply",
"archive",
"assert",
Expand Down
4 changes: 2 additions & 2 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ Example Configuration
[commit]
# https://www.conventionalcommits.org
conventional_commits = true
subject_capitalized = true
subject_imperative = true
subject_capitalized = false
subject_imperative = false
# subject_max_length = 50 # Optional - no limit by default
# subject_min_length = 5 # Optional - no limit by default
allow_commit_types = ["feat", "fix", "docs", "style", "refactor", "test", "chore"]
Expand Down
Loading