-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmypy.ini
90 lines (66 loc) · 1.71 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[mypy]
python_version = 3.6
warn_unused_configs = true
disallow_subclassing_any = true
disallow_any_generics = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
no_implicit_reexport = true
show_error_codes = true
# pretty = true
show_column_numbers = true
[mypy-tests.*]
ignore_errors = true
[mypy-amun]
ignore_missing_imports = true
[mypy-alembic]
ignore_missing_imports = true
[mypy-matplotlib]
ignore_missing_imports = true
[mypy-matplotlib.font_manager]
ignore_missing_imports = true
[mypy-matplotlib.pyplot]
ignore_missing_imports = true
[mypy-matplotlib.figure]
ignore_missing_imports = true
[mypy-packaging.requirements]
ignore_missing_imports = true
[mypy-thoth]
ignore_missing_imports = true
[mypy-thoth.adviser]
ignore_missing_imports = true
[mypy-thoth.adviser.boots]
ignore_missing_imports = true
[mypy-thoth.adviser.sieves]
ignore_missing_imports = true
[mypy-thoth.adviser.steps]
ignore_missing_imports = true
[mypy-thoth.adviser.strides]
ignore_missing_imports = true
[mypy-thoth.adviser.wraps]
ignore_missing_imports = true
[mypy-thoth.common]
ignore_missing_imports = true
[mypy-thoth.python]
ignore_missing_imports = true
[mypy-thoth.solver.python]
ignore_missing_imports = true
[mypy-thoth.solver.python.base]
ignore_missing_imports = true
[mypy-thoth.storages]
ignore_missing_imports = true
[mypy-thoth.storages.exceptions]
ignore_missing_imports = true
[mypy-voluptuous]
ignore_missing_imports = true
[mypy-pytest]
ignore_missing_imports = true
[mypy-flexmock]
ignore_missing_imports = true