From 50a24822a4227c7d85ff692881317ff15aa1fe9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Mon, 25 Nov 2024 13:39:21 +0000 Subject: [PATCH] Add limmat config --- limmat.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 limmat.toml diff --git a/limmat.toml b/limmat.toml new file mode 100644 index 000000000..7768dd1b5 --- /dev/null +++ b/limmat.toml @@ -0,0 +1,25 @@ +# Check that the formatting is correct +[[tests]] +name = "fmt" +command = "cargo fmt --check" + +[[tests]] +name = "typing" +command = "mypy dulwich" + +[[tests]] +name = "ruff-check" +command = "ruff check ." + +[[tests]] +name = "ruff-format" +command = "ruff format --check ." + +[[tests]] +name = "codespell" +command = "codespell --config=.codespellrc ." + +# Validate disperse config +[[tests]] +name = "disperse" +command = "disperse validate"