teilchensammler-cli/justfile
bronsen 46b2a90869
Some checks failed
ci/woodpecker/push/workflow/2 Pipeline failed
ci/woodpecker/push/workflow/1 Pipeline failed
[deps] move ruff into special group because we can't build it on CI
2025-12-05 18:18:38 +01:00

12 lines
327 B
Makefile

uv_export_options := "--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