Makefile 338 B

12345678910111213141516171819
  1. .PHONY: all format lint
  2. all: help
  3. help:
  4. @echo "make"
  5. @echo " format"
  6. @echo " Apply black formatting to code."
  7. @echo " lint"
  8. @echo " Lint code with ruff, and check if black formatter should be applied."
  9. format:
  10. poetry run black .
  11. poetry run ruff . --fix
  12. lint:
  13. poetry run black . --check
  14. poetry run ruff .