Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 568 Bytes

CONTRIBUTING.md

File metadata and controls

43 lines (29 loc) · 568 Bytes

Contributing

Requirements

Local development

Create a Fork

Create a new branch with

git switch -c feat-my-new-feat

Initialize repository

python -m venv .venv
./scripts/install

Add your changes with tests

Format the code

./scripts/format

Run lints and tests

./scripts/test
./scripts/lint

Push your branch

git push origin feat-my-new-feat