Files @ e6894c2b4693
Branch filter:

Location: NPO-Accounting/conservancy_beancount/setup.cfg

Brett Smith
setup: Enable stricter type checking.

This caught the "return instead of raise" bug in meta_project.
[aliases]
test=pytest
typecheck=pytest --addopts="--mypy conservancy_beancount"

[mypy]
disallow_any_unimported = True
show_error_codes = True
strict_equality = True
warn_redundant_casts = True
warn_return_any = True
warn_unreachable = True
warn_unused_configs = True