Skip to content
This repository has been archived by the owner on May 27, 2022. It is now read-only.

Latest commit

 

History

History
25 lines (16 loc) · 632 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (16 loc) · 632 Bytes

Contributing to Pororo

Style check guide

  • pororo relies on black and isort to format its source code consistently. After you make changes, format them with:
$ make style
  • pororo also relies on yapf to maintain neat code structure. To apply yapf, follow installation guide and utilize it with:
PYTHONPATH=DIR python DIR/yapf pororo --style '{based_on_style: google, indent_width: 4}' --recursive -i

Quality check guide

  • pororo uses flake8 to check for coding mistakes. You can run the checks with:
$ make quality