forked from strawberry-graphql/strawberry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mypy.ini
42 lines (32 loc) · 860 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]
plugins = 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
# 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-pygments.*]
ignore_missing_imports = True
[mypy-email_validator.*]
ignore_missing_imports = 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