We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcb50fc commit 976e4efCopy full SHA for 976e4ef
justfile
@@ -25,9 +25,12 @@ test-python:
25
-i coverage.xml \
26
-o htmlcov/coverage.svg
27
28
-# Check Python code with the linter for any errors that need manual attention
+# Check Python code for any errors that need manual attention
29
check-python:
30
+ # Check formatting
31
uv run ruff check .
32
+ # Check types
33
+ uv run mypy .
34
35
# Reformat Python code to match coding style and general structure
36
format-python:
mypy.ini
@@ -0,0 +1,5 @@
1
+[mypy]
2
+python_version = 3.12
3
+
4
+[mypy-quartodoc.*]
5
+ignore_missing_imports = True
0 commit comments