mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2025-12-26 17:02:28 +01:00
22 lines
485 B
INI
22 lines
485 B
INI
# Global options:
|
|
|
|
[mypy]
|
|
python_version = 3.6
|
|
warn_unused_configs = False
|
|
disallow_any_unimported = True
|
|
disallow_any_expr = True
|
|
disallow_any_decorated = True
|
|
disallow_any_explicit = True
|
|
disallow_any_generics = True
|
|
disallow_subclassing_any = True
|
|
disallow_untyped_calls = True
|
|
disallow_untyped_defs = True
|
|
disallow_incomplete_defs = True
|
|
check_untyped_defs = True
|
|
disallow_untyped_decorators = True
|
|
warn_return_any = True
|
|
|
|
# Per-module options:
|
|
[mypy-tests.*]
|
|
ignore_errors = True
|