doc: add 'remove' commit type and refactor existing types

This commit is contained in:
Xymorot 2019-11-20 23:19:22 +01:00
parent 7efad63b1f
commit 420cd4756d
1 changed files with 3 additions and 2 deletions

View File

@ -18,13 +18,14 @@
This project uses [Conventional Commits](https://www.conventionalcommits.or) with the following types:
- `feat`: features, if any part of your commit implements a new functionality, use this
- `feat`: features, if any part of your commit implements a new functionality or changes an existing one, use this
- `remove`: removal of existing code/functionality
- `fix`: bugfixes
- `refactor`: code refactoring
- `update`: updating dependencies and associated code changes
- `config`: changing configuration (linters, build process)
- `reformat`: fixing code formatting
- `doc`: documentation
- `reformat`: fixing code formatting
Always try to split up your changes into coherent commits, a single commit should do a single thing. If your commit needs to do more than one thing it should be labeled with the type coming first in this list.