mirror of
https://github.com/langchain-ai/oap-agent-supervisor.git
synced 2026-07-01 20:04:03 -04:00
15 lines
245 B
Makefile
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"
|