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": "-" + } + } +};