9 lines
358 B
INI
9 lines
358 B
INI
# Base mypy config shared across all isolated examples.
|
|
# Per-example `[[tool.mypy.overrides]]` from each example's pyproject.toml are
|
|
# merged onto this base at lint time by scripts/ci/isolated_examples.py.
|
|
[mypy]
|
|
strict = true
|
|
enable_error_code = redundant-expr, truthy-bool, ignore-without-code
|
|
no_implicit_reexport = false
|
|
disallow_untyped_calls = false
|