1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 20:10:05 +08:00

docs(dev): change commit desc style guide

The vast majority of last 1000 commits do not use a capital letter to
start the <description> 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.
This commit is contained in:
Ricardo Martincoski 2022-11-14 03:54:04 -03:00 committed by GitHub
parent aced222602
commit 8c33a001d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,7 +101,7 @@ you can also use a specific layer name or plugin name as a scope.
**subject:** **subject:**
Subjects should be no greater than 50 characters, 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, Use an imperative tone to describe what a commit does,
rather than what it did. For example, use change; not changed or changes. rather than what it did. For example, use change; not changed or changes.