-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
37 lines (29 loc) · 745 Bytes
/
mypy.ini
File metadata and controls
37 lines (29 loc) · 745 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
28
29
30
31
32
33
34
35
36
37
[mypy]
python_version = 3.10
warn_return_any = False
warn_unused_configs = True
disallow_untyped_defs = False
disallow_incomplete_defs = False
check_untyped_defs = True
disallow_untyped_decorators = False
no_implicit_optional = True
strict_optional = True
allow_redefinition = True
mypy_path = typings
# Ignore import errors for external packages
[mypy.plugins.numpy.*]
follow_imports = skip
[mypy-typer.*]
ignore_missing_imports = True
[mypy-rich.*]
ignore_missing_imports = True
[mypy-rich.console.*]
ignore_missing_imports = True
[mypy-rich.logging.*]
ignore_missing_imports = True
[mypy-rich.progress.*]
ignore_missing_imports = True
[mypy-rich.table.*]
ignore_missing_imports = True
[mypy-chromadb.*]
ignore_missing_imports = False