2019-07-24 07:26:21 -07:00
|
|
|
module.exports = {
|
|
|
|
"disableEmoji": true,
|
|
|
|
"list": [
|
2020-07-23 02:27:14 -07:00
|
|
|
"+ ",
|
|
|
|
"* ",
|
|
|
|
"- ",
|
2019-07-24 07:26:21 -07:00
|
|
|
],
|
|
|
|
"maxMessageLength": 64,
|
|
|
|
"minMessageLength": 3,
|
|
|
|
"questions": [
|
|
|
|
"type",
|
|
|
|
"scope",
|
|
|
|
"subject",
|
|
|
|
"body",
|
2020-07-23 02:27:14 -07:00
|
|
|
"issues",
|
2019-07-24 07:26:21 -07:00
|
|
|
],
|
|
|
|
"scopes": [
|
|
|
|
"",
|
2020-05-26 05:37:37 -07:00
|
|
|
"ui",
|
2019-07-24 07:26:21 -07:00
|
|
|
"global",
|
2021-05-21 06:15:47 -07:00
|
|
|
"filtering",
|
2019-07-24 07:26:21 -07:00
|
|
|
"home",
|
|
|
|
"dnsforward",
|
|
|
|
"dhcpd",
|
2020-05-26 05:37:37 -07:00
|
|
|
"querylog",
|
|
|
|
"documentation",
|
2019-07-24 07:26:21 -07:00
|
|
|
],
|
|
|
|
"types": {
|
2020-07-23 02:27:14 -07:00
|
|
|
"+ ": {
|
2019-07-24 07:26:21 -07:00
|
|
|
"description": "A new feature",
|
|
|
|
"emoji": "",
|
2020-07-23 02:27:14 -07:00
|
|
|
"value": "+ "
|
2019-07-24 07:26:21 -07:00
|
|
|
},
|
2020-07-23 02:27:14 -07:00
|
|
|
"* ": {
|
2019-07-24 07:26:21 -07:00
|
|
|
"description": "A code change that neither fixes a bug or adds a feature",
|
|
|
|
"emoji": "",
|
2020-07-23 02:27:14 -07:00
|
|
|
"value": "* "
|
2019-07-24 07:26:21 -07:00
|
|
|
},
|
2020-07-23 02:27:14 -07:00
|
|
|
"- ": {
|
2019-07-24 07:26:21 -07:00
|
|
|
"description": "A bug fix",
|
|
|
|
"emoji": "",
|
2020-07-23 02:27:14 -07:00
|
|
|
"value": "- "
|
2019-07-24 07:26:21 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|