Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 839 Bytes

CONTRIBUTING.md

File metadata and controls

26 lines (18 loc) · 839 Bytes

Contributing

If you would like to contribute code to this project, you can do so by forking the repository and sending a pull request.

When submitting code, please make every effort to follow existing conventions and style in order to keep the code as readable as possible. This project roughly adheres to the Airbnb code style (particularly for linting) and is formatted using prettier.

If adding new functionality, please be sure to include the appropriate tests as well. All tests must pass before a change can be accepted.

To try out your changes, you can use the included playground project in the example directory:

cd example
npm install
npm start

Then visit http://localhost:1234 in your browser.

Thank you.