forked from microsoft/agent-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyrefly.toml
More file actions
17 lines (15 loc) · 760 Bytes
/
Copy pathpyrefly.toml
File metadata and controls
17 lines (15 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Pyrefly runs over the tests + samples (not source -- Pyright owns source).
# Relaxed profile: surface real public-API type errors without forcing test/sample
# authors to fully annotate their code. Paths are passed explicitly by the workspace
# task runner; this config supplies the shared rule tuning.
project-includes = ["packages/*/tests", "packages/*/ag_ui_tests", "samples"]
# The lab sub-packages use an editable namespace layout (agent_framework_lab_*) that
# pyrefly's import resolver does not pick up from the venv finder hook; add their roots.
search-path = [
"packages/lab/gaia",
"packages/lab/lightning",
"packages/lab/tau2",
]
[errors]
# Test/mock-heavy code legitimately accesses attributes dynamically.
missing-attribute = false