Before submitting a pull request, please make sure the following is done:
- Fork the repository and create your branch from
develop
. - Run
npm i
in the repository root. - If you've fixed a bug or added code that should be tested, would be great if you add tests!
- Ensure the test suite passes (
npm test
). Tip:npm test --watch TestName
is helpful in development. - Format your code with prettier.
- Make sure your code lints (
npm run dev:lint
).