Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions index.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,25 @@
"description": "Documentation only changes"
},
"style": {
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)"
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)"
},
"refactor": {
"description": "A code change that neither fixes a bug or adds a feature"
"description": "A code change that neither fixes a bug nor adds a feature"
},
"perf": {
"description": "A code change that improves performance"
},
"test": {
"description": "Adding missing tests"
"description": "Adding missing tests or correcting existing tests"
},
"build": {
"description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)"
},
"ci": {
"description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)"
},
"chore": {
"description": "Changes to the build process or auxiliary tools and libraries such as documentation generation"
"description": "Other changes that don't modify src or test files"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like chore is separated into build and ci

},
"revert": {
"description": "Reverts a previous commit"
Expand Down