backend / Makefile
albertvillanova's picture
Use only ruff as linter and formatter
10952e9 verified
raw
history blame
113 Bytes
.PHONY: style format
style:
ruff check --fix .
ruff format .
quality:
ruff check .
ruff format --check .