RAG-Scraper / Makefile
CultriX's picture
First Commit
1151f26
raw
history blame contribute delete
202 Bytes
lint:
poetry run flake8 .
poetry run black --line-length 79 . --check
poetry run ruff .
format:
poetry run isort .
poetry run black --line-length 79 .
poetry run ruff . --fix
.PHONY: lint format