2
0
Jelmer Vernooij 3 сар өмнө
parent
commit
50a24822a4
1 өөрчлөгдсөн 25 нэмэгдсэн , 0 устгасан
  1. 25 0
      limmat.toml

+ 25 - 0
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"