forked from enkryptcom/enKrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devmoji.config.js
40 lines (40 loc) · 1.05 KB
/
devmoji.config.js
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
33
34
35
36
37
38
39
40
module.exports = {
types: [
"build",
"ui",
"feature",
"ci",
"devop",
"chore",
"docs",
"feat",
"fix",
"refactor",
"revert",
"style",
"lint",
"test",
"translation",
"sentry",
"release",
],
devmoji: [
{ code: "ui", gitmoji: "art" },
{ code: "feature", gitmoji: "sparkles" },
{ code: "devop", gitmoji: "wrench" },
{ code: "revert", gitmoji: "rewind" },
{ code: "lint", gitmoji: "card_file_box" },
{ code: "translations", gitmoji: "globe_with_meridians" },
{ code: "build", gitmoji: "green_heart" },
{ code: "ci", gitmoji: "green_heart" },
{ code: "chore", gitmoji: "construction_worker" },
{ code: "docs", gitmoji: "page_facing_up" },
{ code: "feat", gitmoji: "sparkles" },
{ code: "fix", gitmoji: "bug" },
{ code: "refactor", gitmoji: "recycle" },
{ code: "style", gitmoji: "art" },
{ code: "test", gitmoji: "white_check_mark" },
{ code: "translation", gitmoji: "globe_with_meridians" },
{ code: "sentry", gitmoji: "fire" },
],
};