From 873108bf081c98eeb22fe00befd81f198aca7879 Mon Sep 17 00:00:00 2001 From: Andrey Meshkov Date: Wed, 24 Jul 2019 17:26:21 +0300 Subject: [PATCH] +: 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. --- changelog.config.js | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 changelog.config.js diff --git a/changelog.config.js b/changelog.config.js new file mode 100644 index 00000000..95079477 --- /dev/null +++ b/changelog.config.js @@ -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": "-" + } + } +};