forked from CESNET/perun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.commitlintrc.json
41 lines (41 loc) · 909 Bytes
/
.commitlintrc.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
41
{
"extends": [
"@commitlint/config-conventional"
],
"helpUrl": "https://perunaai.atlassian.net/wiki/spaces/STRIBOG/pages/13467868/Semantic+versioning",
"rules": {
"scope-enum": [
2,
"always",
[
"core",
"openapi",
"cli",
"gui",
"engine",
"registrar",
"dispatcher",
"mvn",
"deps",
"deps-dev"
]
],
"body-max-line-length": [2, "always", 200]
},
"prompt": {
"questions": {
"scope": {
"description": "Enter the name of the module affected (e.g. core)"
},
"isIssueAffected": {
"description": "Are there any specifics for deployment (upgrade notes)?"
},
"issuesBody": {
"description": "If there are deployment/upgrade notes, the commit requires a body. Please enter a longer description of the commit itself"
},
"issues": {
"description": "Enter UPGRADE NOTE: description of what needs to be done"
}
}
}
}