summaryrefslogtreecommitdiff
path: root/run-mypy.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run-mypy.sh')
-rwxr-xr-xrun-mypy.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/run-mypy.sh b/run-mypy.sh
new file mode 100755
index 0000000..6384a00
--- /dev/null
+++ b/run-mypy.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+options=(--check-untyped-defs)
+
+python3 -m mypy swiftstory "${options[@]}"