File: mypy.ini

package info (click to toggle)
python-vttlib 0.11.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 276 kB
  • sloc: python: 1,090; sh: 6; makefile: 3
file content (35 lines) | stat: -rw-r--r-- 607 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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[mypy]
python_version = 3.6

# Untyped definitions and calls
disallow_incomplete_defs = True

# None and Optional handling
no_implicit_optional = True
strict_optional = True

# Configuring warnings
warn_no_return = True
warn_redundant_casts = True
warn_unreachable = True

# Miscellaneous strictness flags
strict_equality = True

[mypy-fontTools.*]
ignore_missing_imports = True

[mypy-pytest]
ignore_missing_imports = True

[mypy-py]
ignore_missing_imports = True

[mypy-setuptools]
ignore_missing_imports = True

[mypy-pyparsing]
ignore_missing_imports = True

[mypy-ufo2ft]
ignore_missing_imports = True