We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b3a672 commit c089d8fCopy full SHA for c089d8f
mypy.ini
@@ -5,7 +5,10 @@ show_error_codes = True
5
# Exclude _files.py because mypy isn't smart enough to apply
6
# the correct type narrowing and as this is an internal module
7
# it's fine to just use Pyright.
8
-exclude = ^(src/finch/_files\.py|_dev/.*\.py)$
+#
9
+# We also exclude our `tests` as mypy doesn't always infer
10
+# types correctly and Pyright will still catch any type errors.
11
+exclude = ^(src/finch/_files\.py|_dev/.*\.py|tests/.*)$
12
13
strict_equality = True
14
implicit_reexport = True
0 commit comments