forked from PrefectHQ/fastmcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloq.toml
More file actions
31 lines (23 loc) · 624 Bytes
/
loq.toml
File metadata and controls
31 lines (23 loc) · 624 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
29
30
31
# 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 = 1272
[[rules]]
path = "src/fastmcp/server/server.py"
max_lines = 3250
[[rules]]
path = "src/fastmcp/client/client.py"
max_lines = 1885
[[rules]]
path = "src/fastmcp/server/auth/oauth_proxy/proxy.py"
max_lines = 1796
[[rules]]
path = "src/fastmcp/server/providers/local_provider.py"
max_lines = 1187