doc: removed "bug" from recognized commit labels

"fix" and "bugfix" are good enough
This commit is contained in:
Dimitris Panokostas 2022-05-23 21:42:55 +02:00
parent 3b642c2345
commit 4dbc6da986

View File

@ -1,7 +1,7 @@
module.exports = {
types: [
{ types: ["feat", "feature"], label: "🎉 New Features" },
{ types: ["fix", "bugfix", "bug"], label: "🐛 Bugfixes" },
{ types: ["fix", "bugfix"], label: "🐛 Bugfixes" },
{ types: ["improvements", "enhancement"], label: "🔨 Improvements" },
{ types: ["perf"], label: "🏎️ Performance Improvements" },
{ types: ["build", "ci"], label: "🏗️ Build System" },