16 lines
241 B
INI
16 lines
241 B
INI
# Global options:
|
|
|
|
[mypy]
|
|
warn_return_any = True
|
|
warn_unused_configs = True
|
|
|
|
# Per-module options:
|
|
|
|
[mypy-mycode.foo.*]
|
|
disallow_untyped_defs = True
|
|
|
|
[mypy-mycode.bar]
|
|
warn_return_any = False
|
|
|
|
[mypy-somelibrary]
|
|
ignore_missing_imports = True |