···11+# Common commands to handle the project
22+# ------------------------------------------------------------------------------
33+check:
44+ poetry run isort . --profile black --check-only
55+ poetry run black . --check
66+ poetry run mypy .
77+88+format:
99+ poetry run isort . --profile black
1010+ poetry run black .