[go: up one dir, main page]

File: mypy.ini

package info (click to toggle)
aiocomelit 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 364 kB
  • sloc: python: 885; sh: 6; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 499 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[mypy]
python_version = 3.12
show_error_codes = true
follow_imports = silent
ignore_missing_imports = true
strict_equality = true
warn_incomplete_stub = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_return_any = true
warn_unreachable = true