From c2e68968889d79ba774ab19900cc2848342c2689 Mon Sep 17 00:00:00 2001 From: bronsen Date: Fri, 5 Dec 2025 17:07:19 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=8E=A8=20Add=20justfile=20with=20?= =?UTF-8?q?recipes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We have linting and exporting dependencies to requirements files. --- justfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 justfile 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