Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 666 Bytes

CONTRIBUTING.md

File metadata and controls

22 lines (16 loc) · 666 Bytes

Contributing

Contributions are welcome!

Setup

Setup local python virtual environment and install the package

python -m venv venv
pip install .[all]

Semantic Pull Requests

Pull Requests title must follow the conventionalcommits specification. Allowed types are:

  • feat: New features
  • fix: Bug fixes
  • docs: Documentation only changes
  • test: Adding missing or correcting existing tests
  • refactor: A code change that neither fixes a bug nor adds a feature
  • style: For code styling changes
  • perf: For code performance improvements
  • chore: for chores (skips changelog entries)