@@ -16,25 +16,116 @@ strict_equality = True
1616strict_optional = True
1717warn_redundant_casts = True
1818; warn_return_any = True
19- ; warn_unused_configs = True
20- ; warn_unused_ignores = True
19+ warn_unused_configs = True
20+ warn_unused_ignores = True
2121
2222
23- ; Relaxations:
23+ ; Relaxations for code written before mypy was introduced
24+ ;
25+ ; Do not use wildcards in module paths, otherwise added modules will
26+ ; automatically have the same set of relaxed rules as the rest
2427
2528[mypy-sentry_sdk._compat]
2629disallow_untyped_defs = False
2730
2831[mypy-sentry_sdk.scope]
2932disallow_untyped_defs = False
3033
31- [mypy-sentry_sdk.integrations.* ]
34+ [mypy-sentry_sdk.integrations.django ]
3235disallow_any_generics = False
3336disallow_untyped_defs = False
3437
35- [mypy-sentry_sdk.integrations.aiohttp]
36- disallow_any_generics = True
37- disallow_untyped_defs = True
38+ [mypy-sentry_sdk.integrations.django.middleware]
39+ disallow_any_generics = False
40+ disallow_untyped_defs = False
41+
42+ [mypy-sentry_sdk.integrations.bottle]
43+ disallow_any_generics = False
44+ disallow_untyped_defs = False
45+
46+ [mypy-sentry_sdk.integrations.flask]
47+ disallow_any_generics = False
48+ disallow_untyped_defs = False
49+
50+ [mypy-sentry_sdk.integrations.asgi]
51+ disallow_any_generics = False
52+ disallow_untyped_defs = False
53+
54+ [mypy-sentry_sdk.integrations.falcon]
55+ disallow_any_generics = False
56+ disallow_untyped_defs = False
57+
58+ [mypy-sentry_sdk.integrations.aws_lambda]
59+ disallow_any_generics = False
60+ disallow_untyped_defs = False
61+
62+ [mypy-sentry_sdk.integrations.pyramid]
63+ disallow_any_generics = False
64+ disallow_untyped_defs = False
65+
66+ [mypy-sentry_sdk.integrations.celery]
67+ disallow_any_generics = False
68+ disallow_untyped_defs = False
69+
70+ [mypy-sentry_sdk.integrations.beam]
71+ disallow_any_generics = False
72+ disallow_untyped_defs = False
73+
74+ [mypy-sentry_sdk.integrations.sanic]
75+ disallow_any_generics = False
76+ disallow_untyped_defs = False
77+
78+ [mypy-sentry_sdk.integrations.tornado]
79+ disallow_any_generics = False
80+ disallow_untyped_defs = False
81+
82+ [mypy-sentry_sdk.integrations.atexit]
83+ disallow_any_generics = False
84+ disallow_untyped_defs = False
85+
86+ [mypy-sentry_sdk.integrations._wsgi_common]
87+ disallow_any_generics = False
88+ disallow_untyped_defs = False
89+
90+ [mypy-sentry_sdk.integrations.wsgi]
91+ disallow_any_generics = False
92+ disallow_untyped_defs = False
93+
94+ [mypy-sentry_sdk.integrations.serverless]
95+ disallow_any_generics = False
96+ disallow_untyped_defs = False
97+
98+ [mypy-sentry_sdk.integrations.excepthook]
99+ disallow_any_generics = False
100+ disallow_untyped_defs = False
101+
102+ [mypy-sentry_sdk.integrations.threading]
103+ disallow_any_generics = False
104+ disallow_untyped_defs = False
105+
106+ [mypy-sentry_sdk.integrations.stdlib]
107+ disallow_any_generics = False
108+ disallow_untyped_defs = False
109+
110+ [mypy-sentry_sdk.integrations.sqlalchemy]
111+ disallow_any_generics = False
112+ disallow_untyped_defs = False
113+
114+ [mypy-sentry_sdk.integrations.rq]
115+ disallow_any_generics = False
116+ disallow_untyped_defs = False
117+
118+ [mypy-sentry_sdk.integrations.redis]
119+ disallow_any_generics = False
120+ disallow_untyped_defs = False
121+
122+ [mypy-sentry_sdk.integrations.gnu_backtrace]
123+ disallow_any_generics = False
124+ disallow_untyped_defs = False
125+
126+ [mypy-sentry_sdk.integrations.django.templates]
127+ disallow_any_generics = False
128+ disallow_untyped_defs = False
38129
39130[mypy-sentry_sdk.utils]
40131disallow_any_generics = False
0 commit comments