some important libraries for clean code
tutorial: https://www.youtube.com/watch?v=ix1DSyzHMLM
How to add dependencies for special groups $poetry add pytest@latest --group dev
- Pylint https://pypi.org/project/pylint/
- Black https://pypi.org/project/black/
- isort https://pypi.org/project/isort/
- mypy https://pypi.org/project/mypy/
https://pylint.readthedocs.io/en/latest/ $ pylint ./filename.py
https://black.readthedocs.io/en/stable/ $ black .
https://pycqa.github.io/isort/ from root directory $ isort .
https://www.mypy-lang.org/ $ mypy ./filename.py