We welcome contributions from everyone. This document provides guidelines to make the contribution process straightforward.
Keeping a consistent style for code, code comments, commit messages, and PR descriptions will greatly accelerate your PR review process. We highly recommend you run code linter and formatter when you put together your pull requests:
To check the coding styles:
make lint
To fix the coding styles:
make format
- Fork the repository and create your branch from
master
. - Make your changes.
- Run tests and linting to ensure your code meets the project's standards.
- Update documentation if necessary.
- Submit a pull request.
All contributions require a sign-off, acknowledging the Developer Certificate of Origin.
Add a Signed-off-by
line to your commit message:
Signed-off-by: Your Name <your.email@example.com>