Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 558 Bytes

CONTRIBUTING.md

File metadata and controls

21 lines (13 loc) · 558 Bytes

Contributing Guidelines

Coding Style Guide

In general, we adhere to Google Python style guide, and we recommend to use yapf to format your code.

In this project, we adopted pre-commit to automatic check the code style.

To begin with, you should follow the step below to install pre-commit.

pip install pre-commit

Then, you should config the pre-commit hook as below.

pre-commit install

Then when you commit your change, your code will be automatically checked.