Skip to content

Instantly share code, notes, and snippets.

@RoMeAh-zz
Created May 10, 2021 10:37
Show Gist options
  • Save RoMeAh-zz/29cb5008266ab14ace12ac865bfe0538 to your computer and use it in GitHub Desktop.
Save RoMeAh-zz/29cb5008266ab14ace12ac865bfe0538 to your computer and use it in GitHub Desktop.
Conventional Commit Types
{
"types": {
"✨ feat": {
"description": "A new feature",
"title": "Features"
},
"πŸ› fix": {
"description": "A bug fix",
"title": "Bug Fixes"
},
"πŸ“ docs": {
"description": "Documentation only changes",
"title": "Documentation"
},
"🎨 style": {
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
"title": "Styles"
},
"πŸ“¦ refactor": {
"description": "A code change that neither fixes a bug nor adds a feature",
"title": "Code Refactoring"
},
"🐎 perf": {
"description": "A code change that improves performance",
"title": "Performance Improvements"
},
"🎌 test": {
"description": "Adding missing tests or correcting existing tests",
"title": "Tests"
},
"βœ… build": {
"description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
"title": "Builds"
},
"πŸ’š ci": {
"description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)",
"title": "Continuous Integrations"
},
"πŸš€ chore": {
"description": "Other changes that don't modify src or test files",
"title": "Chores"
},
"πŸ“‘ revert": {
"description": "Reverts a previous commit",
"title": "Reverts"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment