-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.cz-config.js
50 lines (50 loc) ยท 2.07 KB
/
.cz-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
41
42
43
44
45
46
47
48
49
50
module.exports = {
types: [
{ value: 'โจ feat', name: 'โจ feat:\t์๋ก์ด ๊ธฐ๋ฅ ์ถ๊ฐ' },
{ value: '๐จ fix', name: '๐จ fix:\t๋ฒ๊ทธ, ์ค๋ฅ ์์ ' },
{
value: '๐ update',
name: '๐ update: \t๋ก์ง ๋๋ api ์์ (๊ธฐํ ๋ณ๊ฒฝ์ผ๋ก ์ธํ feat ์ปค๋ฐ ์ดํ ์์ ๋๋ ๊ฒฝ์ฐ)'
},
{
value: '๐ค refactor',
name: '๐ค refactor:\t๋ฆฌํฉํ ๋ง(์๋ก์ด ๊ธฐ๋ฅ ์ถ๊ฐ๋์ง ์์)'
},
{ value: '๐ docs', name: '๐ docs:\t๋ฌธ์ ์ถ๊ฐ ํน์ ์
๋ฐ์ดํธ' },
{ value: '๐ช create', name: '๐ช create:\t์๋ก์ด ํ์ผ ์์ฑ' },
{ value: '๐ฅ remove', name: '๐ฅ remove:\tํ์ผ ์ญ์ ๋๋ ํ์ผ๋ช
๋ณ๊ฒฝ' },
{
value: '๐ style',
name: '๐ style:\t์ฝ๋ ํฌ๋งทํ
(prettier ์ ์ฉ, ๊ณต๋ฐฑ ์ถ๊ฐ/์ ๊ฑฐ, ๋ณ์๋ช
๋ณ๊ฒฝ ๋ฑ)'
},
{
value: 'โ
test',
name: 'โ
test:\tํ
์คํธ ์ผ์ด์ค ๊ด๋ จ ์ฝ๋ ๋ณ๊ฒฝ'
},
{
value: '๐ chore',
name: '๐ chore:\t๊ธฐํ ๋ณ๊ฒฝ ์ฌํญ (๋ผ์ด๋ธ๋ฌ๋ฆฌ ์
๋ฐ์ดํธ, ์ฃผ์ ์ถ๊ฐ/์ ๊ฑฐ ๋ฑ)'
},
{
value: '๐ฆ build',
name: '๐ฆ build:\t๋น๋ ๊ด๋ จ ํ์ผ ์์ (CI/CD ์ค์ ๋ฑ)'
}
],
scopes: [{ name: '*' }],
allowCustomScopes: true,
skipQuestions: ['scope', 'body', 'breaking', 'footer'],
allowBreakingChanges: ['feat', 'fix'],
usePreparedCommit: false,
subjectLimit: 100,
messages: {
type: '์ปค๋ฐ์ ์ ํ(ํ๊ทธ)์ ์ ํํ์ธ์:',
scope: '\n์ด ๋ณ๊ฒฝ์ ๋ฒ์(SCOPE)๋ฅผ ์์ฑํด์ฃผ์ธ์ (์ ํ์ฌํญ):',
customScope: '์ด ๋ฒ์(SCOPE)๋ฅผ ์์ฑํด์ฃผ์ธ์ :',
subject: '๋ณ๊ฒฝ์ ๋ํ ๊ฐ๊ฒฐํ๊ฒ, ๋ช
๋ นํ์ผ๋ก ์ค๋ช
์ ์์ฑํด์ฃผ์ธ์:\n',
body: '๋ณ๊ฒฝ์ ๋ํ ์์ธํ ์ค๋ช
์ ์์ฑํ์ธ์ "|"๋ฅผ ์ฌ์ฉํ์ฌ ์ค๋ฐ๊ฟ ๊ฐ๋ฅํฉ๋๋ค (์ ํ์ฌํญ):\n',
breaking: '๋ชจ๋ BREAKING CHANGES๋ฅผ ๋์ดํ์ธ์ (์ ํ์ฌํญ):\n',
footer:
'์ด ๋ณ๊ฒฝ์ ์ํด ํด๊ฒฐ๋ ์ด์๋ฅผ ๋์ดํ์ธ์ ex): #31, #34 (์ ํ์ฌํญ):\n',
confirmCommit: '์์ ์ปค๋ฐ์ ์งํํ์๊ฒ ์ต๋๊น?'
}
};