I have updated the Makefile to include a lint target, which sets up a linter for the project using flake8. You can now run make lint to lint the project files. If you haven't already, make sure to add flake8 to your project's dependencies in pyproject.toml using poetry add flake8.
I have updated the
Makefile
to include alint
target, which sets up a linter for the project usingflake8
. You can now runmake lint
to lint the project files. If you haven't already, make sure to addflake8
to your project's dependencies inpyproject.toml
usingpoetry add flake8
.