mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-09 15:19:10 +02:00
67 lines
1.3 KiB
TOML
67 lines
1.3 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/resources/test_resource_template.py"
|
|
max_lines = 1016
|
|
|
|
[[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
|