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 e974daa commit 54fb4f9Copy full SHA for 54fb4f9
.mypy.ini
@@ -1,4 +1,16 @@
1
[mypy]
2
+
3
+;
4
+; Import discovery
5
6
+; tell mypy where the project root is for module resolution
7
+mypy_path=$PYTHONPATH,$PYTHONPATH/stubs
8
+; tell mypy to look at namespace packages (ones without an __init__.py)
9
+namespace_packages = True
10
11
12
+; Strict mode, almost
13
14
disallow_any_generics = True
15
disallow_subclassing_any = True
16
disallow_untyped_calls = True
0 commit comments