diff --git a/justfile b/justfile new file mode 100644 index 0000000..4f95b6c --- /dev/null +++ b/justfile @@ -0,0 +1,12 @@ +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