-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy_profiling.ini
More file actions
34 lines (29 loc) · 855 Bytes
/
mypy_profiling.ini
File metadata and controls
34 lines (29 loc) · 855 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
[mypy]
# MyPy configuration for profiling environment (Python 3.10)
python_version = 3.10
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_equality = true
show_error_codes = true
ignore_missing_imports = true
follow_imports = skip
# Profiling environment specific files only
files = autocsv_profiler/engines/profiling/
# Available packages in profiling environment
[mypy-pandas.*]
ignore_missing_imports = true
[mypy-numpy.*]
ignore_missing_imports = true
[mypy-ydata_profiling.*]
ignore_missing_imports = true
[mypy-sweetviz.*]
ignore_missing_imports = true