- Make app/domains/auth/ and app/core/redis.py mypy-clean under strict. - Add mypy-gate.ini and Makefile mypy-gate target; promote typecheck-gate in CI. - Consolidate domains into app/domains/: bulletin, admin, intelligence, markets. - Extract referral domain incl. DeFi partner DEX ref links; keep Telegram bot wired. - Move app/mcp/ package and app/api/v1/mcp/router into app/domains/mcp/. - Archive dead app/mcp_router.py.
14 lines
246 B
INI
14 lines
246 B
INI
[mypy]
|
|
strict = true
|
|
ignore_missing_imports = true
|
|
explicit_package_bases = true
|
|
exclude = (\.venv/|tests/|__pycache__/)
|
|
|
|
[mypy-app.core.redis]
|
|
ignore_errors = false
|
|
|
|
[mypy-app.domains.auth.*]
|
|
ignore_errors = false
|
|
|
|
[mypy-*]
|
|
ignore_errors = true
|