Files
2025-05-12 17:16:01 -07:00

15 lines
245 B
Makefile

.PHONY: format lint help
format:
ruff format .
ruff check --fix .
lint:
ruff check .
ruff format --diff
help:
@echo "Available commands:"
@echo " make format - Format code with ruff"
@echo " make lint - Check code with ruff"