+: git-cz config file

Added a git-cz config file because otherwise I cannot write proper
commit messages as I forget our rules all the time.
This commit is contained in:
Andrey Meshkov 2019-07-24 17:26:21 +03:00
parent e9647e2962
commit 873108bf08
1 changed files with 43 additions and 0 deletions

43
changelog.config.js Normal file
View File

@ -0,0 +1,43 @@
module.exports = {
"disableEmoji": true,
"list": [
"+",
"*",
"-",
],
"maxMessageLength": 64,
"minMessageLength": 3,
"questions": [
"type",
"scope",
"subject",
"body",
"issues"
],
"scopes": [
"",
"global",
"dnsfilter",
"home",
"dnsforward",
"dhcpd",
"documentation"
],
"types": {
"+": {
"description": "A new feature",
"emoji": "",
"value": "+"
},
"*": {
"description": "A code change that neither fixes a bug or adds a feature",
"emoji": "",
"value": "*"
},
"-": {
"description": "A bug fix",
"emoji": "",
"value": "-"
}
}
};