-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcchk.toml
More file actions
50 lines (49 loc) · 735 Bytes
/
Copy pathcchk.toml
File metadata and controls
50 lines (49 loc) · 735 Bytes
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
[commit]
conventional_commits = true
subject_capitalized = false
subject_imperative = false
subject_max_length = 100
allow_commit_types = [
"feat",
"feature",
"fix",
"bugfix",
"hotfix",
"docs",
"opt",
"patch",
"perf",
"refactor",
"chore",
"revert",
"test",
"tests",
]
allow_merge_commits = true
allow_revert_commits = true
allow_empty_commits = false
allow_fixup_commits = true
allow_wip_commits = false
require_body = false
require_signed_off_by = false
[branch]
conventional_branch = true
allow_branch_types = [
"feature",
"bugfix",
"hotfix",
"release",
"chore",
"feat",
"fix",
"docs",
"refactor",
"perf",
"test",
"ci",
"build",
"style",
"opt",
"patch",
"dependabot",
]