mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-09 15:19:10 +02:00
* Add fastmcp-client workspace package * Fix client package static checks * Document client-only package * Harden fastmcp-client package split * Preserve forwarded headers in full package * Switch to fastmcp-slim package * Fix fastmcp-slim release edges * Match pydantic-style slim layout * Polish fastmcp-slim packaging
63 lines
1.2 KiB
TOML
63 lines
1.2 KiB
TOML
# loq configuration - file size enforcement
|
|
# Run `loq baseline` to update when files exceed limits
|
|
|
|
default_max_lines = 1000
|
|
respect_gitignore = true
|
|
|
|
exclude = ["**/uv.lock", ".git/**", ".claude/**", "docs/**"]
|
|
|
|
[[rules]]
|
|
path = "tests/**"
|
|
max_lines = 1000
|
|
|
|
[[rules]]
|
|
path = "fastmcp_slim/fastmcp/server/context.py"
|
|
max_lines = 1404
|
|
|
|
[[rules]]
|
|
path = "fastmcp_slim/fastmcp/server/server.py"
|
|
max_lines = 2410
|
|
|
|
[[rules]]
|
|
path = "fastmcp_slim/fastmcp/server/auth/oauth_proxy/proxy.py"
|
|
max_lines = 2098
|
|
|
|
[[rules]]
|
|
path = "fastmcp_slim/fastmcp/cli/apps_dev.py"
|
|
max_lines = 1814
|
|
|
|
[[rules]]
|
|
path = "fastmcp_slim/fastmcp/cli/cli.py"
|
|
max_lines = 1116
|
|
|
|
[[rules]]
|
|
path = "fastmcp_slim/fastmcp/server/dependencies.py"
|
|
max_lines = 1686
|
|
|
|
[[rules]]
|
|
path = "fastmcp_slim/fastmcp/server/providers/proxy.py"
|
|
max_lines = 1096
|
|
|
|
[[rules]]
|
|
path = "fastmcp_slim/fastmcp/tools/tool_transform.py"
|
|
max_lines = 1004
|
|
|
|
[[rules]]
|
|
path = "tests/server/providers/openapi/test_openapi_features.py"
|
|
max_lines = 1029
|
|
|
|
[[rules]]
|
|
path = "tests/server/tasks/test_task_mount.py"
|
|
max_lines = 1088
|
|
|
|
[[rules]]
|
|
path = "tests/server/test_dependencies.py"
|
|
max_lines = 1194
|
|
|
|
[[rules]]
|
|
path = "tests/test_mcp_config.py"
|
|
max_lines = 1185
|
|
|
|
[[rules]]
|
|
path = "tests/utilities/openapi/test_director.py"
|
|
max_lines = 1154
|