forked from speced/bikeshed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
33 lines (26 loc) · 648 Bytes
/
mypy.ini
File metadata and controls
33 lines (26 loc) · 648 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
[mypy]
exclude = (build)
files = bikeshed/**/*.py
python_version = 3.12
warn_unused_configs = True
allow_redefinition_new = True
disallow_any_generics = True
disallow_untyped_defs = True
enable_error_code = exhaustive-match
local_partial_types = True
no_implicit_optional = True
warn_redundant_casts = True
warn_return_any = True
warn_unused_ignores = True
[mypy-pygments.*]
ignore_missing_imports = True
[mypy-lxml.*]
ignore_missing_imports = True
[mypy-PIL.*]
ignore_missing_imports = True
[mypy-isodate.*]
ignore_missing_imports = True
[mypy-alive_progress.*]
ignore_missing_imports = True
[mypy-widlparser.*]
no_implicit_optional = False