File tree Expand file tree Collapse file tree 1 file changed +16
-7
lines changed
Expand file tree Collapse file tree 1 file changed +16
-7
lines changed Original file line number Diff line number Diff line change 11[mypy]
22
3+ python_version = 3.10
4+ exclude = mypy/typeshed/|mypyc/test-data/|mypyc/lib-rt/
5+
6+ # Options that affect type checking
37strict = True
8+ allow_redefinition_new = True
49local_partial_types = True
510disallow_any_unimported = True
6- show_traceback = True
7- pretty = True
8- always_false = MYPYC
9- plugins = mypy.plugins.proper_plugin
10- python_version = 3.10
11- exclude = mypy/typeshed/|mypyc/test-data/|mypyc/lib-rt/
11+ warn_unreachable = True
1212enable_error_code = ignore-without-code,redundant-expr
1313enable_incomplete_feature = PreciseTupleTypes
14+
15+ # Plugins or custom behaviour
16+ always_false = MYPYC
17+ plugins = mypy.plugins.proper_plugin
18+
19+ # Options that affect output
20+ pretty = True
1421show_error_code_links = True
15- warn_unreachable = True
22+ show_traceback = True
23+
24+ # Miscellaneous
1625fixed_format_cache = True
You can’t perform that action at this time.
0 commit comments