-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathmypy.ini
More file actions
28 lines (22 loc) · 734 Bytes
/
mypy.ini
File metadata and controls
28 lines (22 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[mypy]
python_version = 3.11
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = False
ignore_missing_imports = False
# Ignore missing stubs for these modules
[mypy-frontmatter.*]
ignore_missing_imports = True
[mypy-apscheduler.*]
ignore_missing_imports = True
[mypy-cli_agent_orchestrator.adapters.database]
ignore_missing_imports = True
# Allow SQLAlchemy ORM issues
[mypy-cli_agent_orchestrator.clients.database]
disable_error_code = misc,assignment,arg-type
# Ignore specific issues in CLI commands
[mypy-cli_agent_orchestrator.cli.commands.install]
disable_error_code = assignment
# Ignore MCP server Any return types
[mypy-cli_agent_orchestrator.mcp_server.server]
disable_error_code = no-any-return