Update lint_all.lean

This commit is contained in:
jstoobysmith 2024-12-10 10:16:22 +00:00
parent 74a83a621a
commit 9a5ce2476d

View file

@ -23,4 +23,7 @@ def main (_: List String) : IO UInt32 := do
println! "Doc check ..." println! "Doc check ..."
let docCheck ← IO.Process.output {cmd := "lake", args := #["exe", "no_docs"]} let docCheck ← IO.Process.output {cmd := "lake", args := #["exe", "no_docs"]}
println! docCheck.stdout println! docCheck.stdout
println! "Lean linter ..."
let leanCheck ← IO.Process.output {cmd := "lake", args := #["exe", "runLinter", "HepLean"]}
println! leanCheck.stdout
pure 0 pure 0