Skip to content

Commit 352a929

Browse files
committed
Explicitly mention all files where type errors are ignored in mypy.ini
1 parent 325fa08 commit 352a929

File tree

1 file changed

+148
-42
lines changed

1 file changed

+148
-42
lines changed

mypy.ini

Lines changed: 148 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -48,81 +48,187 @@ warn_return_any = True
4848
#
4949
# disable_recursive_aliases = True
5050

51-
[mypy-manim._config.*]
51+
[mypy-manim.animation.animation]
5252
ignore_errors = True
53-
disable_error_code = return-value
5453

55-
[mypy-manim._config.cli_colors]
56-
ignore_errors = False
54+
[mypy-manim.animation.composition]
55+
ignore_errors = True
5756

58-
[mypy-manim._config.logger_utils]
59-
ignore_errors = False
57+
[mypy-manim.animation.creation]
58+
ignore_errors = True
6059

61-
[mypy-manim.animation.*]
60+
[mypy-manim.animation.growing]
6261
ignore_errors = True
6362

64-
[mypy-manim.animation.changing]
65-
ignore_errors = False
63+
[mypy-manim.animation.indication]
64+
ignore_errors = True
6665

67-
[mypy-manim.animation.fading]
68-
ignore_errors = False
66+
[mypy-manim.animation.movement]
67+
ignore_errors = True
6968

70-
[mypy-manim.animation.numbers]
71-
ignore_errors = False
69+
[mypy-manim.animation.rotation]
70+
ignore_errors = True
7271

73-
[mypy-manim.animation.updaters.update]
74-
ignore_errors = False
72+
[mypy-manim.animation.speedmodifier]
73+
ignore_errors = True
7574

76-
[mypy-manim.camera.*]
75+
[mypy-manim.animation.transform_matching_parts]
7776
ignore_errors = True
7877

79-
[mypy-manim.cli.*]
80-
ignore_errors = False
78+
[mypy-manim.animation.transform]
79+
ignore_errors = True
8180

82-
[mypy-manim.cli.cfg.*]
83-
ignore_errors = False
81+
[mypy-manim.animation.updaters.mobject_update_utils]
82+
ignore_errors = True
8483

85-
[mypy-manim.gui.*]
84+
[mypy-manim.camera.camera]
8685
ignore_errors = True
8786

88-
[mypy-manim.mobject.*]
87+
[mypy-manim.camera.mapping_camera]
8988
ignore_errors = True
9089

91-
[mypy-manim.mobject.frame]
92-
ignore_errors = False
90+
[mypy-manim.camera.moving_camera]
91+
ignore_errors = True
9392

94-
[mypy-manim.mobject.geometry.*]
93+
[mypy-manim.camera.multi_camera]
9594
ignore_errors = True
9695

97-
[mypy-manim.mobject.graphing.scale]
98-
ignore_errors = False
96+
[mypy-manim.camera.three_d_camera]
97+
ignore_errors = True
9998

100-
[mypy-manim.mobject.text.code_mobject]
101-
ignore_errors = False
99+
[mypy-manim._config.utils]
100+
ignore_errors = True
102101

103-
[mypy-manim.mobject.three_d.three_d_utils]
104-
ignore_errors = False
102+
[mypy-manim.gui.gui]
103+
ignore_errors = True
105104

106-
[mypy-manim.renderer.*]
105+
[mypy-manim.mobject.graphing.coordinate_systems]
107106
ignore_errors = True
108107

109-
[mypy-manim.scene.*]
108+
[mypy-manim.mobject.graphing.functions]
110109
ignore_errors = True
111110

112-
[mypy-manim.scene.moving_camera_scene]
113-
ignore_errors = False
111+
[mypy-manim.mobject.graphing.number_line]
112+
ignore_errors = True
114113

115-
[mypy-manim.scene.section]
116-
ignore_errors = False
114+
[mypy-manim.mobject.graphing.probability]
115+
ignore_errors = True
117116

118-
[mypy-manim.utils.hashing.*]
117+
[mypy-manim.mobject.graph]
118+
ignore_errors = True
119+
120+
[mypy-manim.mobject.logo]
121+
ignore_errors = True
122+
123+
[mypy-manim.mobject.matrix]
124+
ignore_errors = True
125+
126+
[mypy-manim.mobject.mobject]
127+
ignore_errors = True
128+
129+
[mypy-manim.mobject.opengl.dot_cloud]
130+
ignore_errors = True
131+
132+
[mypy-manim.mobject.opengl.opengl_compatibility]
133+
ignore_errors = True
134+
135+
[mypy-manim.mobject.opengl.opengl_geometry]
136+
ignore_errors = True
137+
138+
[mypy-manim.mobject.opengl.opengl_image_mobject]
139+
ignore_errors = True
140+
141+
[mypy-manim.mobject.opengl.opengl_mobject]
142+
ignore_errors = True
143+
144+
[mypy-manim.mobject.opengl.opengl_point_cloud_mobject]
145+
ignore_errors = True
146+
147+
[mypy-manim.mobject.opengl.opengl_surface]
148+
ignore_errors = True
149+
150+
[mypy-manim.mobject.opengl.opengl_three_dimensions]
151+
ignore_errors = True
152+
153+
[mypy-manim.mobject.opengl.opengl_vectorized_mobject]
154+
ignore_errors = True
155+
156+
[mypy-manim.mobject.svg.brace]
157+
ignore_errors = True
158+
159+
[mypy-manim.mobject.svg.svg_mobject]
160+
ignore_errors = True
161+
162+
[mypy-manim.mobject.table]
163+
ignore_errors = True
164+
165+
[mypy-manim.mobject.text.numbers]
166+
ignore_errors = True
167+
168+
[mypy-manim.mobject.text.tex_mobject]
169+
ignore_errors = True
170+
171+
[mypy-manim.mobject.text.text_mobject]
172+
ignore_errors = True
173+
174+
[mypy-manim.mobject.three_d.polyhedra]
175+
ignore_errors = True
176+
177+
[mypy-manim.mobject.three_d.three_dimensions]
178+
ignore_errors = True
179+
180+
[mypy-manim.mobject.types.image_mobject]
181+
ignore_errors = True
182+
183+
[mypy-manim.mobject.types.point_cloud_mobject]
184+
ignore_errors = True
185+
186+
[mypy-manim.mobject.types.vectorized_mobject]
187+
ignore_errors = True
188+
189+
[mypy-manim.mobject.value_tracker]
190+
ignore_errors = True
191+
192+
[mypy-manim.mobject.vector_field]
193+
ignore_errors = True
194+
195+
[mypy-manim.renderer.cairo_renderer]
196+
ignore_errors = True
197+
198+
[mypy-manim.renderer.opengl_renderer]
199+
ignore_errors = True
200+
201+
[mypy-manim.renderer.opengl_renderer_window]
202+
ignore_errors = True
203+
204+
[mypy-manim.renderer.shader]
205+
ignore_errors = True
206+
207+
[mypy-manim.renderer.shader_wrapper]
208+
ignore_errors = True
209+
210+
[mypy-manim.renderer.vectorized_mobject_rendering]
211+
ignore_errors = True
212+
213+
[mypy-manim.scene.scene_file_writer]
214+
ignore_errors = True
215+
216+
[mypy-manim.scene.scene]
217+
ignore_errors = True
218+
219+
[mypy-manim.scene.three_d_scene]
220+
ignore_errors = True
221+
222+
[mypy-manim.scene.vector_space_scene]
223+
ignore_errors = True
224+
225+
[mypy-manim.scene.zoomed_scene]
226+
ignore_errors = True
227+
228+
[mypy-manim.utils.hashing]
119229
ignore_errors = True
120230

121-
[mypy-manim.utils.color.*]
122-
ignore_errors = False
123231

124-
[mypy-manim.utils.iterables]
125-
warn_return_any = False
126232

127233

128234
# ---------------- We can't properly type this ------------------------

0 commit comments

Comments
 (0)