]> tinc-vpn.org Git - tinc/blobdiff - lint.py
Add Markdown reformat to lint.py
[tinc] / lint.py
diff --git a/lint.py b/lint.py
index 076b3e7174166caa179208ab8662c8a1c968c2cc..d1cb24558b1442a8ed79702e0c62fd8af3ebc4ef 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