From 82cc4c78c378b1ae2b6f13ea0069c302f1bfda8d Mon Sep 17 00:00:00 2001 From: Xymorot Date: Fri, 26 Jul 2019 22:19:28 +0200 Subject: [PATCH] doc: update commit documentation (add new type) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 366f70e..f04429f 100644 --- a/README.md +++ b/README.md @@ -17,12 +17,14 @@ ### Git Commits 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 - `fix`: bugfixes - `refactor`: code refactoring - `update`: updating dependencies and associated code changes - `doc`: documentation - `config`: changing configuration (linters, build process) +- `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.