committed.toml 664 B

123456789101112131415161718192021222324252627282930
  1. # configuration for https://github.com/crate-ci/committed
  2. # https://www.conventionalcommits.org
  3. style="conventional"
  4. allowed_types = [
  5. "fix",
  6. "feat",
  7. "chore",
  8. "docs",
  9. "style",
  10. "refactor",
  11. "perf",
  12. "test",
  13. "ci",
  14. ]
  15. # allow merge commits
  16. merge_commit = true
  17. # subject is not required to be capitalized
  18. subject_capitalized = false
  19. # subject should start with an imperative verb
  20. imperative_subject = true
  21. # subject should not end with a punctuation
  22. subject_not_punctuated = true
  23. # disable line length
  24. line_length = 0
  25. # disable subject length
  26. subject_length = 0
  27. # Ignore the following authors
  28. ignore_author_re="(dependabot|renovate)"