-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathloq.toml
More file actions
63 lines (47 loc) · 1.17 KB
/
loq.toml
File metadata and controls
63 lines (47 loc) · 1.17 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# 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 = "src/fastmcp/server/context.py"
max_lines = 1404
[[rules]]
path = "src/fastmcp/server/server.py"
max_lines = 2410
[[rules]]
path = "src/fastmcp/server/auth/oauth_proxy/proxy.py"
max_lines = 2098
[[rules]]
path = "src/fastmcp/cli/apps_dev.py"
max_lines = 1814
[[rules]]
path = "src/fastmcp/cli/cli.py"
max_lines = 1116
[[rules]]
path = "src/fastmcp/server/dependencies.py"
max_lines = 1686
[[rules]]
path = "src/fastmcp/server/providers/proxy.py"
max_lines = 1096
[[rules]]
path = "src/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