1. {
    2. "types": {
    3. "feat": {
    4. "description": "A new feature",
    5. "title": "Features"
    6. },
    7. "fix": {
    8. "description": "A bug fix",
    9. "title": "Bug Fixes"
    10. },
    11. "docs": {
    12. "description": "Documentation only changes",
    13. "title": "Documentation"
    14. },
    15. "style": {
    16. "description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
    17. "title": "Styles"
    18. },
    19. "refactor": {
    20. "description": "A code change that neither fixes a bug nor adds a feature",
    21. "title": "Code Refactoring"
    22. },
    23. "perf": {
    24. "description": "A code change that improves performance",
    25. "title": "Performance Improvements"
    26. },
    27. "test": {
    28. "description": "Adding missing tests or correcting existing tests",
    29. "title": "Tests"
    30. },
    31. "build": {
    32. "description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
    33. "title": "Builds"
    34. },
    35. "ci": {
    36. "description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)",
    37. "title": "Continuous Integrations"
    38. },
    39. "chore": {
    40. "description": "Other changes that don't modify src or test files",
    41. "title": "Chores"
    42. },
    43. "revert": {
    44. "description": "Reverts a previous commit",
    45. "title": "Reverts"
    46. }
    47. }
    48. }