Code guidelines
- PEP8.
- 79 characters is a MUST.
- No space characters on blank lines.
- Preserve legacy code formating if you are have not modified corresponding class or function definition, e.g. do not automatically apply code formating to the whole project.
Git guidelines
- Fork stephrdev/django-mongoforms repo.
- Do you job.
- Test the result. You SHOULD write tests but it is not required. If you will decide to not to provide automated tests you MUST provide test primers in pull request.
- Make new branch named by the feature you've implemented or the bug you've fixed. It is good practice to provide issue number that you can find in the official bugtraker.
- Prepare newly created branch for merging: you SHOULD squash the commits into single one and MUST rebase this branch on the upstream master branch.
- Send pull request to the master branch.
- You will receive our response in a couple of days. Please notice any updates on your pull request and respond accordingly.