💄 Chore: Add git commit linting
Sumi is a great project!
This commit is contained in:
parent
3b74f7e3a6
commit
b9e346516c
1 changed files with 57 additions and 0 deletions
57
sumi.toml
Normal file
57
sumi.toml
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
# git-sumi ~ configuration file
|
||||||
|
# Config: https://sumi.rs/docs/configuration
|
||||||
|
# Rules: https://sumi.rs/docs/rules
|
||||||
|
|
||||||
|
# Suppresses progress messages.
|
||||||
|
quiet = false
|
||||||
|
|
||||||
|
# Displays parsed commit message.
|
||||||
|
display = false
|
||||||
|
|
||||||
|
# Sets display format: cli, json, table, toml.
|
||||||
|
format = "table"
|
||||||
|
|
||||||
|
# Processes each non-empty line as an individual commit.
|
||||||
|
split_lines = false
|
||||||
|
|
||||||
|
# Rule: Include one valid Gitmoji.
|
||||||
|
# See https://gitmoji.dev/.
|
||||||
|
gitmoji = true
|
||||||
|
|
||||||
|
# Rule: Description must start with the specified case.
|
||||||
|
# Options: 'any', 'lower', 'upper'.
|
||||||
|
description_case = "upper"
|
||||||
|
|
||||||
|
# Rule: Use the imperative mood in the description.
|
||||||
|
# Example: 'Fix bug' instead of 'Fixed bug'.
|
||||||
|
imperative = true
|
||||||
|
|
||||||
|
# Rule: Do not end commit header with a period.
|
||||||
|
no_period = false
|
||||||
|
|
||||||
|
# Rule: Header length limit.
|
||||||
|
# A value of 0 disables the rule.
|
||||||
|
max_header_length = 0
|
||||||
|
|
||||||
|
# Rule: Body line length limit.
|
||||||
|
# A value of 0 disables the rule.
|
||||||
|
max_body_length = 0
|
||||||
|
|
||||||
|
# Rule: No leading, trailing, or consecutive spaces.
|
||||||
|
whitespace = true
|
||||||
|
|
||||||
|
# Rule: Follow Conventional Commits format.
|
||||||
|
# See https://www.conventionalcommits.org/.
|
||||||
|
conventional = false
|
||||||
|
|
||||||
|
# Rule: List of allowed commit scopes.
|
||||||
|
# An empty list allows all scopes. Example: ["docs", "cli"].
|
||||||
|
scopes_allowed = []
|
||||||
|
|
||||||
|
# Rule: List of allowed commit types.
|
||||||
|
# An empty list allows all types. Example: ["feat", "fix", "docs"].
|
||||||
|
types_allowed = ["Feat", "Fix", "Docs", "Chore"]
|
||||||
|
|
||||||
|
# Rule: Header must match regex pattern.
|
||||||
|
# Example: '^JIRA-\d+:'.
|
||||||
|
header_pattern = ""
|
Loading…
Add table
Add a link
Reference in a new issue