-
Notifications
You must be signed in to change notification settings - Fork 0
/
commitizen.js
50 lines (45 loc) · 1.22 KB
/
commitizen.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
const { execSync } = require('child_process');
function getGitBranch() {
const res = execSync('git rev-parse --abbrev-ref HEAD', { encoding: 'utf8' });
return res.trim();
}
module.exports = {
types: [
{
value: 'feat',
name: 'feat: Добавление нового функционала',
},
{
value: 'refactor',
name: 'refactor: Правки кода без исправления ошибок или добавления новых функций',
},
{
value: 'fix',
name: 'fix: Исправление ошибок',
},
{
value: 'build',
name: 'build: Сборка проекта или изменения внешних зависимостей',
},
{
value: 'docs',
name: 'docs: Обновление документации',
},
{
value: 'docs',
name: 'docs: Правки по документации проекта или отдельных частей проекта',
},
{
value: 'test',
name: 'test: Добавление тестов',
},
],
scopes: [
{
name: getGitBranch(),
},
],
allowCustomScopes: true,
allowBreakingChanges: false,
subjectLimit: 72,
};