ruff:
	ruff check . --output-format pylint

mypy:
	mypy src/ tests/

test:
	pytest tests/

pylint:
	pylint --ignore=$(PYLINT_IGNORED) src/ tests/ --load-plugins=perflint

check: pylint ruff mypy test
