-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
37 lines (30 loc) · 877 Bytes
/
mypy.ini
File metadata and controls
37 lines (30 loc) · 877 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]
strict = True
python_version = 3.12
files = src
ignore_missing_imports = True
cache_fine_grained = True
warn_unused_ignores = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
disallow_untyped_decorators = False
disallow_subclassing_any = False
warn_return_any = True
implicit_optional = False
strict_optional = True
warn_unreachable = True
[mypy-BAET._config.logging]
disable_error_code = valid-type, name-defined
[mypy-BAET.typing]
disable_error_code = valid-type
[mypy-BAET.constants]
disable_error_code = valid-type
[mypy-BAET.helpers.string_helpers]
disable_error_code = valid-type, name-defined
[mypy-BAET.cli.types]
disable_error_code = valid-type, name-defined, misc
[mypy-BAET.cli.commands.extract]
disable_error_code = valid-type, name-defined
[mypy-BAET.cli.commands.probe]
disable_error_code = valid-type