Skip to content

Commit ccadfad

Browse files
author
Eugene Kalyada
committed
build: (config) Generate config by current utility
Made rules for current repository
1 parent 97a021c commit ccadfad

File tree

1 file changed

+95
-0
lines changed

1 file changed

+95
-0
lines changed

config.json

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
{
2+
"body" : {
3+
"request" : "Please enter a body of commit:",
4+
"newLineSpacer" : "|",
5+
"length" : {
6+
"min" : {
7+
"value" : 5
8+
},
9+
"max" : {
10+
"value" : 140
11+
}
12+
}
13+
},
14+
"footer" : {
15+
"length" : {
16+
17+
},
18+
"prefix" : "META:",
19+
"enabled" : true,
20+
"request" : "Please enter a footer of commit:"
21+
},
22+
"header" : {
23+
"scope" : {
24+
"skiptRequest" : "Do not add scope.",
25+
"enabled" : true,
26+
"items" : [
27+
{
28+
"key" : "validation",
29+
"value" : "Part of code in core ypu application"
30+
},
31+
{
32+
"key" : "commit",
33+
"value" : "Modification of making commit"
34+
},
35+
{
36+
"key" : "tests",
37+
"value" : "Creation or modification tests"
38+
},
39+
{
40+
"key" : "string",
41+
"value" : "String resources update"
42+
},
43+
{
44+
"key" : "config",
45+
"value" : "Configuration modification"
46+
},
47+
],
48+
"skip" : false,
49+
"request" : "Please, choose you scope of code:"
50+
},
51+
"length" : {
52+
"min" : {
53+
"value" : 5
54+
},
55+
"max" : {
56+
"value" : 72
57+
}
58+
},
59+
"customScope" : {
60+
"enabled" : false,
61+
"request" : "Please, enter your custom scope (or enter `<` to return to list of scopes):",
62+
"back" : "<"
63+
},
64+
"type" : {
65+
"request" : "Please, choose you type of commit:",
66+
"items" : [
67+
{
68+
"key" : "build",
69+
"value" : "Modifications related by configuration or building rules of project"
70+
},
71+
{
72+
"key" : "ci",
73+
"value" : "Changes for continuous integration"
74+
},
75+
{
76+
"key" : "doc",
77+
"value" : "Some documentation changes"
78+
},
79+
{
80+
"key" : "feat",
81+
"value" : "Making some feature"
82+
},
83+
{
84+
"key" : "fix",
85+
"value" : "Bugfixing"
86+
},
87+
{
88+
"key" : "perf",
89+
"value" : "Perfomance improvement"
90+
}
91+
]
92+
},
93+
"request" : "Please enter a header of commit"
94+
}
95+
}

0 commit comments

Comments
 (0)