diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-04-08 16:53:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-08 16:53:41 +0100 |
commit | 0f2a9c864ae48f3bef4e2e928b761fb4de3b4026 (patch) | |
tree | cb5615b44e278e1593ab872d1be688fb284386c6 /CONTRIBUTING.md | |
parent | f3a3d5b6cb1d370dad5075717d6cf068f526bfa0 (diff) | |
download | rspamd-0f2a9c864ae48f3bef4e2e928b761fb4de3b4026.tar.gz rspamd-0f2a9c864ae48f3bef4e2e928b761fb4de3b4026.zip |
[Minor] Update CONTRIBUTING
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e7e97879e..952baad37 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,10 +8,12 @@ The following is a set of guidelines for contributing to Rspamd and its packages [I don't want to read this whole thing, I just have a question](#i-dont-want-to-read-this-whole-thing-i-just-have-a-question) + [How Can I Contribute?](#how-can-i-contribute) * [Reporting Bugs](#reporting-bugs) - * [Pull Requests](#pull-requests) + [Styleguides](#styleguides) + * [Git Commit Messages](#git-commit-messages) * [Lua style guide](#lua-styleguide) ## I don't want to read this whole thing I just have a question @@ -78,6 +80,23 @@ Include details about your configuration and environment: * **What's the name and version of the OS you're using**? * **What hardware are you using, including CPU generation**, e.g. Intel Haswell or ArmV7? If you have `gcc` installed, that could be achieved by the following command: `gcc -march=native -Q --help=target|grep march`. In Linux, you can also check `/proc/cpuinfo` file for the required details. -### Pull Requests - ## Styleguides + +### Git Commit Messages + +* Use the present tense ("Add feature" not "Added feature") +* Use the imperative mood ("Move cursor to..." not "Moves cursor to...") +* Limit the first line to 72 characters or less (without tag) +* Reference issues and pull requests liberally after the first line +* Consider starting the commit message with an applicable tag: + * [Minor] - minor issue/improvement not worth to mention in ChangeLog + * [Feature] - a significant feature + * [Fix] - bug fix + * [CritFix] - critical bug fix + * [Rework] - some significant logic rework + * [Config] - configuration change + * [Rules] - rules change + +### Lua styleguide + +Please use the following [Lua style guide](lua_style.md) when contributing changes to Lua code. This guide is both applicable for rules, libraries and plugins. |