From 8c33a001d77f00de94a7aa849399aa21341ff9ee Mon Sep 17 00:00:00 2001 From: Ricardo Martincoski <5299189+ricardo-martincoski@users.noreply.github.com> Date: Mon, 14 Nov 2022 03:54:04 -0300 Subject: [PATCH] docs(dev): change commit desc style guide The vast majority of last 1000 commits do not use a capital letter to start the field in the commit subject: $ git log --oneline -n 1000 origin/master | grep ': [A-Z]' | wc -l 11 $ git log --oneline -n 1000 origin/master | grep ': [a-z]' | wc -l 984 Assume this is the new convention and update the doc. --- docs/development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development.md b/docs/development.md index ce8ac76d1..10d563144 100644 --- a/docs/development.md +++ b/docs/development.md @@ -101,7 +101,7 @@ you can also use a specific layer name or plugin name as a scope. **subject:** Subjects should be no greater than 50 characters, -should begin with a capital letter and do not end with a period. +should not begin with a capital letter and do not end with a period. Use an imperative tone to describe what a commit does, rather than what it did. For example, use change; not changed or changes.