summaryrefslogtreecommitdiff
path: root/run-mypy.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run-mypy.sh')
-rwxr-xr-xrun-mypy.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/run-mypy.sh b/run-mypy.sh
index 6384a00..04a5135 100755
--- a/run-mypy.sh
+++ b/run-mypy.sh
@@ -1,5 +1,11 @@
#!/bin/bash
-options=(--check-untyped-defs)
+options=(
+ --check-untyped-defs
+ --disallow-untyped-calls
+ --disallow-untyped-defs
+ --disallow-incomplete-defs
+ --disallow-untyped-decorators
+)
python3 -m mypy swiftstory "${options[@]}"