Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 615 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (16 loc) · 615 Bytes

Contribution Guidelines

How to contribute

  • Fork the repository
  • Commit your changes
  • Create a new Pull Request

How to run the tests

The project uses Jest as a test runner.

  • Install the dependencies with yarn install
  • Run the tests with yarn test

Make sure to add tests for your changes if applicable.

How to run the linter

The project uses Rome as a linter and formatter.

  • Install the dependencies with yarn install
  • Run the linter with yarn lint
  • Run the formatter with yarn format
  • for auto-fixing the errors run yarn lint:fix