diff options
author | Sunaina Pai <sunainapai.in@gmail.com> | 2019-12-05 21:56:58 +0530 |
---|---|---|
committer | Sunaina Pai <sunainapai.in@gmail.com> | 2019-12-05 21:56:58 +0530 |
commit | c46c81e0785ae5b751c2f383f1ed95bc3174b403 (patch) | |
tree | b4e123e464a9814f39d9aea710af3a4be14dcb3b /CONTRIBUTING.md | |
parent | dcdd61bd9939eb72b2ec2d382be73d141e4aaa7a (diff) |
Add contribution guidelines
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..28cce84 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,32 @@ +Contribution Guidelines +======================= + +Please take care of the following points while sending a pull request to +this project: + + 1. Ensure that the pull request does not add major features or increase + the scope of the project. Bug fixes and minor improvements are okay + and might be accepted. But major features or changes that increase + the complexity of the code will not be accepted. + + 2. Follow [PEP 8][CODING-GUIDE] while editing [makesite.py]. + + 3. Use only Makefile syntax, shell syntax, commands, and options that + are specified in [POSIX][POSIX-HOME] as much as possible while + editing [Makefile]. Avoid Bash-specific and GNU-specific features. + See documentation on [POSIX Shell Command Language][POSIX-SCL], + [POSIX Utilities][POSIX-UTIL], and [POSIX Make][POSIX-MAKE] for + reference. + + 4. Follow [Erlang/OTP commit message guidelines][COMMIT-GUIDE] while + writing Git commit messages. + + +[makesite.py]: makesite.py +[Makefile]: Makefile +[POSIX-HOME]: https://pubs.opengroup.org/onlinepubs/9699919799/ +[POSIX-SCL]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html +[POSIX-UTIL]: https://pubs.opengroup.org/onlinepubs/9699919799/idx/utilities.html +[POSIX-MAKE]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/make.html +[CODING-GUIDE]: https://www.python.org/dev/peps/pep-0008/ +[COMMIT-GUIDE]: https://github.com/erlang/otp/wiki/Writing-good-commit-messages |