-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy path.commitlintrc.json
More file actions
24 lines (24 loc) · 922 Bytes
/
.commitlintrc.json
File metadata and controls
24 lines (24 loc) · 922 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
{
"extends": ["@commitlint/config-conventional"],
"helpUrl": "https://gitlab.ics.muni.cz/perun/perun-idm/perun-web-apps/-/blob/main/CONTRIBUTING.md",
"prompt": {
"questions": {
"scope": {
"description": "Enter the name of the affected app (e.g. profile)"
},
"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"
}
}
},
"rules": {
"scope-enum": [2, "always", ["admin", "profile", "pwdreset", "consolidator", "linker", "publications", "openapi", "lib", "npm", "deps", "deps-dev"]],
"body-max-line-length": [2, "always", 200]
}
}