Coding Style Checking
It ensures PEP8 coding style.
-
Get into the api container
docker exec -it fastapi-fullstack_api_1 /bin/bash -
Check everything
pycodestyle . -
Automatic correction
black .
It ensures PEP8 coding style.
Get into the api container
docker exec -it fastapi-fullstack_api_1 /bin/bash
Check everything
pycodestyle .
Automatic correction
black .