mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 07:04:17 +00:00
5f12f06297
This is the same list as https://github.com/conventional-changelog/commitlint/tree/master/%40commitlint/config-conventional\#rules
18 lines
673 B
TOML
18 lines
673 B
TOML
# configuration for https://github.com/crate-ci/committed
|
|
|
|
# https://www.conventionalcommits.org
|
|
style="conventional"
|
|
# disallow merge commits
|
|
merge_commit = false
|
|
# subject is not required to be capitalized
|
|
subject_capitalized = false
|
|
# subject should start with an imperative verb
|
|
imperative_subject = true
|
|
# subject should not end with a punctuation
|
|
subject_not_punctuated = true
|
|
# disable line length
|
|
line_length = 0
|
|
# disable subject length
|
|
subject_length = 0
|
|
# default allowed_types [ "chore", "docs", "feat", "fix", "perf", "refactor", "style", "test" ]
|
|
allowed_types = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "revert", "style", "test" ]
|