diff options
author | James McCoy <jamessan@jamessan.com> | 2021-10-01 17:52:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-01 17:52:13 -0400 |
commit | d9b3e41a638d3031ffd9a62aa2439860d11068dd (patch) | |
tree | 5b1fcfda9aca84598d9d8a1417f5d1d186a9a697 | |
parent | 9337fff8aad610acd5ef619f757686c47f0c118c (diff) | |
parent | 38b0306591954d058d8a7dbbcf0531ae2aa5d759 (diff) | |
download | rneovim-d9b3e41a638d3031ffd9a62aa2439860d11068dd.tar.gz rneovim-d9b3e41a638d3031ffd9a62aa2439860d11068dd.tar.bz2 rneovim-d9b3e41a638d3031ffd9a62aa2439860d11068dd.zip |
Merge pull request #15863 from dundargoc/docs/contributing/commit-message
docs: update preferred commit message style for the static analyzer PRs
-rw-r--r-- | CONTRIBUTING.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 88d2989f13..cd17b93462 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -161,7 +161,7 @@ see potential bugs found by [PVS Studio](https://www.viva64.com/en/pvs-studio/). - Use this format for commit messages (where `{id}` is the PVS warning-id)): ``` - PVS/V{id}: {description} + fix(PVS/V{id}): {description} ``` - Search the Neovim commit history to find examples: ``` @@ -177,7 +177,7 @@ master build. To view the defects, just request access; you will be approved. - Use this format for commit messages (where `{id}` is the CID (Coverity ID); ([example](https://github.com/neovim/neovim/pull/804))): ``` - coverity/{id}: {description} + fix(coverity/{id}): {description} ``` - Search the Neovim commit history to find examples: ``` |