We welcome contributions from the community and are pleased to have them.
Please follow this guide when logging issues or making code changes.
All issues should be created using the new GitHub Issue form.
Use our Issue Template.
Clearly describe the issue including steps to reproduce if there are any. Also, make sure to indicate the earliest version that has the issue being reported.
Code changes are welcome and should follow the guidelines below.
- Fork the repository on GitHub.
- Fix the issue ensuring that your code follows this project's tslint configuration.
- Run
npm run tslint
to generate a report of lint issues - Run
tslint --fix --project .
to auto fix most of the lint issues
- Run
- Add tests for your new code ensuring that you have 100% code coverage (we can help you reach 100% but will not merge without it).
- Run
npm run test
to generate a report of test coverage
- Run
- Use our Pull Request Template for making a new pull request.
- Pull requests should be made to the features branch.