🚨(gitlint) Allow uppercase in commit messages

Many developers use uppercase as the first letter
in their commit messages, it creates an error.
We will allow uppercase in commit messages to
lower frustration when committing.
This commit is contained in:
Anthony LC
2025-03-18 09:24:31 +01:00
committed by Anthony LC
parent bcdaedba9b
commit aff330eb5b
3 changed files with 3 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ All commit messages must adhere to the following format:
* <**gitmoji**>: Use a gitmoji to represent the purpose of the commit. For example, ✨ for adding a new feature or 🔥 for removing something, see the list here: <https://gitmoji.dev/>.
* **(type)**: Describe the type of change. Common types include `backend`, `frontend`, `CI`, `docker` etc...
* **title**: A short, descriptive title for the change, starting with a lowercase character.
* **title**: A short, descriptive title for the change.
* **description**: Include additional details about what was changed and why.
### Example Commit Message