-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmypy.ini
42 lines (33 loc) · 859 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
36
37
38
39
40
41
42
[mypy]
check_untyped_defs = true
disallow_subclassing_any = true
disallow_any_generics = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = false
no_implicit_optional = true
show_error_codes = true
show_column_numbers = true
warn_return_any = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
[mypy-connexion]
ignore_missing_imports = true
[mypy-flask]
ignore_missing_imports = true
[mypy-flask_cors]
ignore_missing_imports = true
[mypy-flask_script]
ignore_missing_imports = true
[mypy-prometheus_flask_exporter]
ignore_missing_imports = true
[mypy-requests]
ignore_missing_imports = true
[mypy-toml]
ignore_missing_imports = true
[mypy-thoth.common.*]
ignore_missing_imports = true
[mypy-thoth.storages.*]
ignore_missing_imports = true