forked from iblh/hexo-theme-material
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contributing.json
40 lines (40 loc) · 1.29 KB
/
contributing.json
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
// https://gitmagic.io/rules
{
"commit": {
"subject_cannot_be_empty": true,
"subject_must_be_in_tense": "imperative",
"subject_must_not_end_with_dot": true,
"subject_lines_must_be_shorter_than": 51,
"subject_must_be_single_line": true,
"subject_must_be_in_case": "lower",
"subject_must_include_prefix": {
"prefixes": ["feat", "fix", "docs", "style", "refactor", "test", "chore"],
"require_after_prefix": "(*): "
}
},
"pull_request": {
"subject_cannot_be_empty": true,
"subject_must_be_in_tense": "imperative",
"subject_must_start_with_case": "lower",
"subject_must_not_end_with_dot": true,
"subject_must_include_prefix": {
"prefixes": ["feat", "fix", "docs", "style", "refactor", "test", "chore"],
"require_after_prefix": "(*): "
},
"body_cannot_be_empty": true,
"body_must_include_verification_steps": true
},
"issue": {
"subject_cannot_be_empty": true,
"subject_must_start_with_case": "upper",
"subject_must_not_end_with_dot": true,
"body_cannot_be_empty": true,
"body_must_include_reproduction_steps": ["bug"]
},
"branch": {
"name_must_be_longer_than": 4,
"name_must_include_prefix": {
"prefixes": ["feat", "fix", "refactor", "chore"],
"require_after_prefix": "/"
}
}