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 5fb5bd8 commit 54cd64dCopy full SHA for 54cd64d
mypy/options.py
@@ -329,7 +329,10 @@ def __init__(self) -> None:
329
self.dump_type_stats = False
330
self.dump_inference_stats = False
331
self.dump_build_stats = False
332
- self.enable_incomplete_feature: list[str] = []
+ # FIXME: Temporarily TypeForm support by default so that mypy_primer
333
+ # can check how enabling it by default would affect typechecker
334
+ # for projects that are already trying to use TypeForm.
335
+ self.enable_incomplete_feature: list[str] = [TYPE_FORM]
336
self.timing_stats: str | None = None
337
self.line_checking_stats: str | None = None
338
0 commit comments