UNPKG

1.83 kBJavaScriptView Raw
1module.exports = {
2 "disableEmoji": false,
3 "list": [
4 "init",
5 "test",
6 "feat",
7 "fix",
8 "chore",
9 "docs",
10 "refactor",
11 "style",
12 "ci",
13 "perf"
14 ],
15 "maxMessageLength": 64,
16 "minMessageLength": 3,
17 "questions": [
18 "type",
19 "scope",
20 "subject",
21 "body",
22 "breaking",
23 "issues",
24 "lerna"
25 ],
26 "scopes": [],
27 "types": {
28 "chore": {
29 "description": "Build process or auxiliary tool changes",
30 "emoji": "🔧",
31 "value": "chore"
32 },
33 "ci": {
34 "description": "CI related changes",
35 "emoji": "👷",
36 "value": "ci"
37 },
38 "docs": {
39 "description": "Documentation only changes",
40 "emoji": "✏️",
41 "value": "docs"
42 },
43 "feat": {
44 "description": "A new feature",
45 "emoji": "✨",
46 "value": "feat"
47 },
48 "fix": {
49 "description": "A bug fix",
50 "emoji": "🐛",
51 "value": "fix"
52 },
53 "perf": {
54 "description": "A code change that improves performance",
55 "emoji": "⚡️",
56 "value": "perf"
57 },
58 "refactor": {
59 "description": "A code change that neither fixes a bug or adds a feature",
60 "emoji": "🔨",
61 "value": "refactor"
62 },
63 "style": {
64 "description": "Markup, white-space, formatting, missing semi-colons...",
65 "emoji": "🎨",
66 "value": "style"
67 },
68 "test": {
69 "description": "Adding missing tests ",
70 "emoji": "✅",
71 "value": "test"
72 },
73 "init": {
74 "description": "Initialize Repo",
75 "emoji": "🎉",
76 "value": "init"
77 }
78 }
79 };
\No newline at end of file