-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruff.toml
More file actions
19 lines (17 loc) · 821 Bytes
/
Copy pathruff.toml
File metadata and controls
19 lines (17 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
target-version = "py311"
line-length = 100
[lint]
select = ["F", "I", "E", "W"]
ignore = ["E501", "F405", "E701"]
[lint.per-file-ignores]
"__init__.py" = ["F401", "F403", "F405"]
"src/core/*.py" = ["F403"]
"tests/*.py" = ["E402"]
"src/core/intelligence/layer.py" = ["E402", "BLE001"] # 24 broad excepts — gradual cleanup
"src/core/multi_project_searcher.py" = ["E402"]
"src/mcp/server.py" = ["E402"]
# F821 подавления сняты — добавлены явные импорты (см. audit B6 fix):
# src/core/search/cypher_sql.py: +List, Tuple
# src/core/search/composition_adapter.py: +Dict, List, Node, SymbolRef
# src/mcp/tools/graph_tools.py: проверено — все имена определены
# src/core/start_reranker_snippet.py: файл не существует, удалён