File: mypy.ini

package info (click to toggle)
python-setuptools-rust 1.9.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 648 kB
  • sloc: python: 1,703; javascript: 95; sh: 14; makefile: 13
file content (19 lines) | stat: -rw-r--r-- 432 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# We have to manually ignore types for some packages. It would be great if
# interested users want to add these types to typeshed!

[mypy]
show_error_codes = True

disallow_untyped_defs = True
disallow_any_unimported = True
no_implicit_optional = True
check_untyped_defs = True

warn_return_any = True
warn_unused_ignores = True

[mypy-semantic_version.*]
ignore_missing_imports = True

[mypy-wheel.*]
ignore_missing_imports = True