docs: added the opt type to the commit style definition

This commit is contained in:
antifallobst 2024-03-24 20:19:40 +01:00
parent 33d4454c68
commit d4a89cb0f8
Signed by: antifallobst
GPG Key ID: 2B4F402172791BAF
1 changed files with 5 additions and 4 deletions

View File

@ -35,10 +35,11 @@ notes
A commits type can be one of the following: A commits type can be one of the following:
- **feat**: feature - **feat:** feature
- **fix**: bugfix - **fix:** bugfix
- **refactor**: nothing new added but code restructured, etc - **refactor:** nothing new added but code restructured, etc
- **docs**: documentation changes - **docs:** documentation changes
- **opt:** optimization changes
The commit scope is kinda free, but it's a good idea to use scopes, that have been used before. The commit scope is kinda free, but it's a good idea to use scopes, that have been used before.
Scopes can be nested like this: `scope >> subscope >> subscope`. Scopes can be nested like this: `scope >> subscope >> subscope`.