Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 484 Bytes

CONTRIBUTING.md

File metadata and controls

32 lines (24 loc) · 484 Bytes

Contributing

Thanks for deciding to contribute.

Steps

  1. Clone (or fork) this repository
  2. Create a new branch with git switch -c {branch_name}
  3. Make your changes
  4. Run
./scripts/format
./scripts/lint
./scripts/test
  1. Create a commit
  2. Push your code
  3. Create a Pull Request

Adding dependencies

poetry add {package_name}

Adding dev dependencies

We use the group dev for developer deps.

poetry add --group dev {package_name}