diff --git a/README.md b/README.md index 03904ac..59807f2 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ Python Stuff # Basic commands +## Docker compose + Build: ```shell docker compose build @@ -18,3 +20,20 @@ Bash into: ```shell docker compose run --rm -it app bash ``` + +## Code linting + +Flake8: +```shell +flake8 . +``` + +Black: +```shell +black . +``` + +Isort: +```shell +isort . +```