Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 569 Bytes

File metadata and controls

26 lines (17 loc) · 569 Bytes

Contributing

Thank you for your interest in contributing to the project! Here are some useful instructions for getting you started.

Pre-commit Hooks

We use pre-commit hooks to ensure code quality. To set them up, follow these steps:

  1. Install pre-commit if you haven't already:

    pip install pre-commit
  2. Install the pre-commit hooks to your local Git repository:

    pre-commit install
  3. (optional) To run the pre-commit hooks manually on all files, use:

    pre-commit run --all-files