Skip to content
Snippets Groups Projects
setup.cfg 498 B
Newer Older
[mypy]
show_column_numbers = True
ignore_missing_imports = True

[mypy-opentech.*]
ignore_errors = True

# Turn on type checking in the apply folder
Todd Dembrey's avatar
Todd Dembrey committed
[mypy-opentech.apply.funds*]
check_untyped_defs = True
ignore_errors = False

# Enforce writing type definitions within workflow
Todd Dembrey's avatar
Todd Dembrey committed
[mypy-opentech.apply.funds.workflow*]
disallow_untyped_defs = True

# Exclude migrations globally - must be at end
[mypy-*.migrations*]
ignore_errors = True

ignore = E501,F405
exclude = migrations,node_modules