langflow/Makefile
2023-03-07 13:08:12 -03:00

18 lines
No EOL
288 B
Makefile

.PHONY: all format lint
all: help
format:
poetry run black .
poetry run ruff --select I --fix .
lint:
poetry run mypy .
poetry run black . --check
poetry run ruff .
help:
@echo '----'
@echo 'format - run code formatters'
@echo 'lint - run linters'