teilchensammler-cli/justfile

13 lines
336 B
Makefile
Raw Normal View History

uv_export_options := "--frozen --format requirements.txt --quiet"
exports-deps:
uv export {{ uv_export_options }} --output-file requirements.txt
uv export {{ uv_export_options }} --only-dev --output-file requirements.dev.txt
lint-python:
uv run ruff check .
lint-markdown:
markdownlint-cli2 .
lint: lint-python lint-markdown