image-captioning

References

Linting

Check linting with:

pylint --rcfile=.pylintrc ./<directory>

Prerequisite:

  • pylint: install pylint with:
pip install pylint

Auto-formatting

yapf -i ./image_captioning/**/*.py

Warning: The option -i will modify the files in-place.

Prerequisite:

  • yapf: install yapf with:
pip install yapf

yapf reads pyproject.toml configuration for autoformatting options.