We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
We use github to host code, to track issues and feature requests, as well as accept pull requests.
Pull requests are the best way to propose changes to the codebase. We actively welcome your pull requests:
- Fork the repo and create your branch from
master. - Make sure your code is clean and that .
- Make sure your code lints.
- Issue that pull request!
Report bugs using Github's issues
We use GitHub issues to track public bugs. Report a bug by opening a new issue; it's that easy!
Bug reports are more than welcome, for the benefit of both parties be sure to be as specific as possible with your report
Great Bug Reports tend to have:
- A quick summary and/or background
- Steps to reproduce (Be specific!)
- What you expected would happen
- What actually happens
- Notes (possibly including why you think this might be happening, or stuff you tried that didn't work) ì
To enforce a consistent style we use prettier and commitlint (used via husky)
At the moment we don't have any strict linter set up, we only check that commits complaints to the conventional commits standard. Its very important that you stick to this convention as its validated when you commit your code (via husky) and with a github action on every pull request opened on master
But what if you messed up your commit messages and now the ci blocks your pull request? No problem you can simply reword your latest commits messages like this:
- run
git rebase -i HEAD~nwherenis the number of commits you want to rename - the previous command will open up an editable text file with instructions; to rename your commits simply replace
pickwithrewordbefore any commit you want to rename - then you can freely change the commit message to respect the conventional commits standard
- after you're done force push the amended commits by running
git push --force