Skip to content

Commit b332ef2

Browse files
stevemaoAndersDJohnson
authored andcommitted
feat(titles): add a title to each type (#5)
1 parent dd5616e commit b332ef2

File tree

1 file changed

+22
-11
lines changed

1 file changed

+22
-11
lines changed

index.json

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,48 @@
11
{
22
"types": {
33
"feat": {
4-
"description": "A new feature"
4+
"description": "A new feature",
5+
"title": "Features"
56
},
67
"fix": {
7-
"description": "A bug fix"
8+
"description": "A bug fix",
9+
"title": "Bug Fixes"
810
},
911
"docs": {
10-
"description": "Documentation only changes"
12+
"description": "Documentation only changes",
13+
"title": "Documentation"
1114
},
1215
"style": {
13-
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)"
16+
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
17+
"title": "Styles"
1418
},
1519
"refactor": {
16-
"description": "A code change that neither fixes a bug nor adds a feature"
20+
"description": "A code change that neither fixes a bug nor adds a feature",
21+
"title": "Code Refactoring"
1722
},
1823
"perf": {
19-
"description": "A code change that improves performance"
24+
"description": "A code change that improves performance",
25+
"title": "Performance Improvements"
2026
},
2127
"test": {
22-
"description": "Adding missing tests or correcting existing tests"
28+
"description": "Adding missing tests or correcting existing tests",
29+
"title": "Tests"
2330
},
2431
"build": {
25-
"description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)"
32+
"description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
33+
"title": "Builds"
2634
},
2735
"ci": {
28-
"description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)"
36+
"description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)",
37+
"title": "Continuous Integrations"
2938
},
3039
"chore": {
31-
"description": "Other changes that don't modify src or test files"
40+
"description": "Other changes that don't modify src or test files",
41+
"title": "Chores"
3242
},
3343
"revert": {
34-
"description": "Reverts a previous commit"
44+
"description": "Reverts a previous commit",
45+
"title": "Reverts"
3546
}
3647
}
3748
}

0 commit comments

Comments
 (0)