694630ca02
Unfortunately this is becoming more trouble than it's worth as we call more and more untyped Beancount functions. disallow_untyped_defs provides most of the value of what we really want here, so go ahead and turn this off.
14 lines
328 B
INI
14 lines
328 B
INI
[aliases]
|
|
test=pytest
|
|
typecheck=pytest --addopts="--mypy conservancy_beancount"
|
|
|
|
[mypy]
|
|
disallow_any_unimported = True
|
|
disallow_untyped_calls = False
|
|
disallow_untyped_defs = True
|
|
show_error_codes = True
|
|
strict_equality = True
|
|
warn_redundant_casts = True
|
|
warn_return_any = True
|
|
warn_unreachable = True
|
|
warn_unused_configs = True
|