forked from strawberry-graphql/strawberry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mypy.ini
84 lines (62 loc) · 1.45 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
[mypy]
files = strawberry
plugins = pydantic.mypy, strawberry.ext.mypy_plugin
implicit_reexport = False
warn_unused_configs = True
warn_unused_ignores = True
check_untyped_defs = True
ignore_errors = False
strict_optional = True
show_error_codes = True
warn_redundant_casts = True
ignore_missing_imports = True
install_types = True
non_interactive = True
show_traceback = True
# TODO: enable strict at some point
;strict = True
; Disabled because of this bug: https://github.com/python/mypy/issues/9689
; disallow_untyped_decorators = True
[mypy-graphql.*]
ignore_errors = True
[mypy-pydantic.*]
ignore_errors = True
[mypy-pydantic_core.*]
ignore_errors = True
[mypy-rich.*]
ignore_errors = True
[mypy-libcst.*]
ignore_errors = True
[mypy-pygments.*]
ignore_missing_imports = True
[mypy-email_validator.*]
ignore_missing_imports = True
ignore_errors = True
[mypy-dotenv.*]
ignore_missing_imports = True
[mypy-django.apps.*]
ignore_missing_imports = True
[mypy-django.http.*]
ignore_missing_imports = True
[mypy-strawberry_django.*]
ignore_missing_imports = True
[mypy-cached_property.*]
ignore_missing_imports = True
[mypy-importlib_metadata.*]
ignore_errors = True
[mypy-anyio.*]
ignore_errors = True
[mypy-dns.*]
ignore_errors = True
[mypy-click.*]
ignore_errors = True
[mypy-h11.*]
ignore_errors = True
[mypy-httpx.*]
ignore_errors = True
[mypy-httpcore.*]
ignore_errors = True
[mypy-idna.*]
ignore_errors = True
[mypy-markdown_it.*]
ignore_errors = True