-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathmypy.ini
More file actions
27 lines (23 loc) · 607 Bytes
/
Copy pathmypy.ini
File metadata and controls
27 lines (23 loc) · 607 Bytes
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
[mypy]
# Set the Python version constraint match the project.
python_version = 3.13
# Configure general settings.
warn_return_any = True
warn_unused_configs = True
warn_redundant_casts = True
warn_unused_ignores = True
# Follow imports to check consistency.
follow_imports = normal
# Show error codes.
show_error_codes = True
# Ignore third-party libraries without type stubs.
[mypy-mujoco.*]
ignore_missing_imports = True
[mypy-numba.*]
ignore_missing_imports = True
[mypy-tqdm.*]
ignore_missing_imports = True
[mypy-pyvista.*]
ignore_missing_imports = True
[mypy-webp.*]
ignore_missing_imports = True