generated from VectorInstitute/aieng-template-uv
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmypy.ini
More file actions
47 lines (38 loc) · 939 Bytes
/
mypy.ini
File metadata and controls
47 lines (38 loc) · 939 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
38
39
40
41
42
43
44
45
46
47
[mypy]
mypy_path=src
follow_imports = normal
ignore_missing_imports = False
install_types = True
pretty = True
non_interactive = True
disallow_untyped_defs = True
no_implicit_optional = True
check_untyped_defs = True
allow_untyped_decorators = False
allow_incomplete_defs = False
warn_redundant_casts = True
warn_unused_ignores = True
implicit_reexport = False
strict_equality = True
extra_checks = True
warn_unused_configs = True
allow_subclassing_any = False
exclude = (venv|examples/tutorial/*|tests)
[mypy-sklearn.*]
ignore_missing_imports = True
[mypy-syntheval.*]
ignore_missing_imports = True
[mypy-opacus.*]
ignore_missing_imports = True
[mypy-nltk.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-category_encoders.*]
ignore_missing_imports = True
[mypy-gower.*]
ignore_missing_imports = True
[mypy-faiss.*]
ignore_missing_imports = True
[mypy-catboost.*]
ignore_missing_imports = True