pororo
relies onblack
andisort
to format its source code consistently. After you make changes, format them with:
$ make style
pororo
also relies onyapf
to maintain neat code structure. To applyyapf
, follow installation guide and utilize it with:
PYTHONPATH=DIR python DIR/yapf pororo --style '{based_on_style: google, indent_width: 4}' --recursive -i
pororo
usesflake8
to check for coding mistakes. You can run the checks with:
$ make quality