🐛 fix(Makefile): update ruff command to fix all files in the directory

The ruff command was updated to fix all files in the directory instead of just the ones that have the I issue. This ensures that all files are properly formatted.
This commit is contained in:
Gabriel Almeida 2023-05-27 17:00:44 -03:00
commit f774cc6361

View file

@ -17,7 +17,7 @@ tests:
format:
poetry run black .
poetry run ruff --select I --fix .
poetry run ruff . --fix
cd src/frontend && npm run format
lint: