Skip to content

Latest commit

 

History

History
41 lines (23 loc) · 1.48 KB

CONTRIBUTING.md

File metadata and controls

41 lines (23 loc) · 1.48 KB

Contributing to this repository

First of all, thanks for taking the time to read this document and contributing to our codebase!

Getting started

If you're working on an existing issue then awesome! Let us know by dropping a comment in the issue.

If it's a new bug fix or feature that you would like to contribute, then please raise an issue so it can be tracked (and to help out others who are experiencing the same issue / want the new thing know that it's being looked at!). Be sure to check for existing issues before raising your own!

Working on your feature

Branching

On this project we follow mainline development (or trunk based development), and our default branch is main.

Therefore you need to branch from main and merge into main.

Coding style

Generally try to match the style and conventions of the code around your changes. Ultimately we want code that is clear, concise, consistent and easy to read.

We use eslint and prettier for linting. You can check and correct the code style using the following commands:

# Check linting
yarn lint

# Fix linting
yarn lint:fix

Opening a PR

Once you're confident your branch is ready to review, open a PR against main on this repo.

Please use the PR template as a guide, but if your change doesn't quite fit it, feel free to customize.

Merging and publishing

When your feature branch / PR has been tested and has an approval, it is then ready to merge. Please contact a maintainer to action the merge.