-
Notifications
You must be signed in to change notification settings - Fork 0
/
mypy.ini
40 lines (34 loc) · 804 Bytes
/
mypy.ini
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
[mypy]
install_types = true
non_interactive = true
show_error_codes = true
warn_unused_configs = true
warn_unused_ignores = true
pretty = true
strict = true
exclude=
tests/performance/cli_modules/
[mypy-tests.*]
no_warn_no_return = true
disallow_untyped_defs = false
disallow_untyped_calls = false
check_untyped_defs = true
strict_equality = false
strict = false
[mypy-tasks,noxfile]
strict = false
allow_redefinition = false
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = true
implicit_reexport = false
local_partial_types = true
strict_equality = true
warn_unused_ignores = true
warn_unreachable = true
[mypy-pandas.*,tqdm.*]
ignore_missing_imports = True
[mypy-sqlalchemy.*]
ignore_missing_imports = True
[mypy-matplotlib.*,seaborn.*]
ignore_missing_imports = True