-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcommitpal.config.json
32 lines (32 loc) · 1.22 KB
/
commitpal.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "Emoji",
"steps": [
{
"type": "option",
"message": "What type of change?",
"after": " ",
"options": [
{ "value": "🎉", "description": "🎉 Initial commit" },
{ "value": "✨", "description": "✨ New feature" },
{ "value": "🐛", "description": "🐛 Bugfix" },
{ "value": "📚", "description": "📚 Documentation" },
{ "value": "🐎", "description": "🐎 Performance" },
{ "value": "💄", "description": "💄 Cosmetic" },
{ "value": "🚨", "description": "🚨 Tests" },
{ "value": "🎨", "description": "🎨 Improve format/structure" },
{ "value": "🔨", "description": "🔨 Refactor code" },
{ "value": "🚑", "description": "🚑 Critical hotfix" },
{ "value": "🚧", "description": "🚧 Work in progress" },
{ "value": "🔧", "description": "🔧 Configuration files" },
{ "value": "💩", "description": "💩 Bad code" },
{ "value": "⏪", "description": "⏪ Reverting changes" },
{ "value": "💥", "description": "💥 Breaking changes" }
]
},
{
"type": "text",
"max": 50,
"message": "Summarise this change..."
}
]
}