Skip to content
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.

Latest commit

 

History

History
23 lines (16 loc) · 820 Bytes

CONTRIBUTING.md

File metadata and controls

23 lines (16 loc) · 820 Bytes

Contributing

When contributing to this repository, please follow the pull request process.

Pull Request Process

  1. Create a new branch with feature/bugfix/hotfix prefix from the develop branch.
git checkout -b feature/new-error-feature
git checkout -b bugfix/new-error-bugfix
git checkout -b hotfix/new-error-hotfix
  1. Create unit tests for the change made. Add the tests inside a folder with the name __tests__ in the same folder level of the new file.
  2. Update the CHANGELOG.md with details of changes, in the Ongoing Changes section without a version.
  3. Create a merge request at the repo between your feature branch and the develop branch. Assign of the maintainers to review the changes and be sure that all your tests passes and the code coverage doesn't decreases.