CuPBoP/CONTRIBUTING.md

35 lines
854 B
Markdown
Raw Normal View History

# Contributing to COX
Thank you for your interest in contributing to COX!
We appreciate all contributions, including but not limited to:
- Add documentation
- Add new features and components
- Fix bugs
## How to contribute?
0. (Optional) Open an issue and discuss your idea before start
1. Fork the latest version COX
2. Commit to the forked repo
3. Create a Pull Request to COX main branch
## Code style
We follow the Clang format in this repo.
To make sure your contribution is following the correct style,
we highly recommend you to install [pre-commit](https://pre-commit.com/) before development.
```bash
# Python environment is required
pip install pre-commit
```
Then, from the repository folder, execute the following instruction:
```bash
pre-commit install
```
With pre-commit plugin, each local commit will be automatically checked.