2025-12-05 18:18:38 +01:00
|
|
|
uv_export_options := "--format requirements.txt --quiet"
|
2025-12-05 17:07:19 +01:00
|
|
|
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
|