Skip to content

Description format

  • Default:ignore

In this page, we will use the following commit message as an example.

rules:
description-format:
level: error
format: ^[A-Z].*$

❌ Bad

Terminal window
feat(cli): added a new flag

✅ Good

Terminal window
feat(cli): Added a new flag

Example

Description must start with a capital letter

rules:
description-format:
level: error
format: ^[A-Z].*$