-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
25 lines (23 loc) · 648 Bytes
/
mypy.ini
File metadata and controls
25 lines (23 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
[mypy]
python_version = 3.9
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
ignore_missing_imports = true
no_implicit_reexport = true
[[tool.mypy.overrides]]
module = [
"tkinter.*",
]
ignore_missing_imports = true
; Verwenden Sie diese Datei wenn Sie vollständige Type-Annotations wünschen:
; mypy --config-file mypy.ini bash_script_maker.py syntax_highlighter.py