mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-09-24 18:45:11 +02:00
11 lines
181 B
Makefile
11 lines
181 B
Makefile
.PHONY: lint format
|
|
|
|
lint:
|
|
poetry run ruff check .
|
|
poetry run ruff format . --diff
|
|
poetry run mypy .
|
|
|
|
format:
|
|
poetry run ruff format .
|
|
poetry run ruff check --select I --fix .
|