Add Markdown reformat to lint.py
[tinc] / lint.py
diff --git a/lint.py b/lint.py
index 076b3e7..d1cb245 100755 (executable)
--- a/lint.py
+++ b/lint.py
@@ -39,6 +39,7 @@ linters = (
     ["pylint", "."],
     ["mypy", "--exclude", "build", "."],
     ["shellcheck", "-x", *glob(".ci/**/*.sh", recursive=True)],
+    ["markflow", "--line-length", "80", "--check" if DRY else "--verbose", ".", ".ci"],
 )
 
 failed: bool = False