summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcheck7
1 files changed, 5 insertions, 2 deletions
diff --git a/check b/check
index 1518c15..13d781f 100755
--- a/check
+++ b/check
@@ -66,8 +66,11 @@ python3 -m CoverageTestRunner --ignore-missing-from=without-tests qvisqve qvisqv
title "Code style"
pycodestyle qvisqve qvisqve_secrets
-title "Static checking"
-pylint3 -j0 --rcfile pylint.conf qvisqve qvisqve_secrets
+if command -v pylint3 > /dev/null
+then
+ # title "Static checking"
+ # pylint3 -j0 --rcfile pylint.conf qvisqve qvisqve_secrets
+fi
title "Run yarns"
if [ "$remote" = no ]