.PHONY: lint lint-check format format-check

lint:
	uvx ruff check --fix src/ tests/

lint-check:
	uvx ruff check --extend-select I src/ tests/

format:
	uvx ruff format src/ tests/

format-check:
	uvx ruff format --check src/ tests/
