-
Notifications
You must be signed in to change notification settings - Fork 50
/
.mypy.ini
35 lines (31 loc) · 889 Bytes
/
.mypy.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[mypy]
ignore_errors = True
ignore_missing_imports = True
disallow_untyped_defs = False
disallow_untyped_calls = False
check_untyped_defs = False
disallow_incomplete_defs = False
[mypy-tiled.adapters.*]
ignore_errors = False
ignore_missing_imports = False
check_untyped_defs = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
disallow_untyped_calls = True
disallow_untyped_decorators = True
[mypy-tiled._tests.adapters.*]
ignore_errors = False
ignore_missing_imports = False
check_untyped_defs = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
disallow_untyped_calls = True
disallow_untyped_decorators = False
[mypy-tiled._tests.test_protocols]
ignore_errors = False
ignore_missing_imports = False
check_untyped_defs = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
disallow_untyped_calls = True
disallow_untyped_decorators = True