19 lines
540 B
Plaintext
19 lines
540 B
Plaintext
# clangd 读取编译数据库,为 IDE / AI 工具提供精确类型上下文(规约 §10.1)
|
||
CompileFlags:
|
||
CompilationDatabase: build/debug
|
||
|
||
Diagnostics:
|
||
UnusedIncludes: Strict
|
||
ClangTidy:
|
||
Add:
|
||
- bugprone-*
|
||
- performance-*
|
||
- modernize-*
|
||
Remove:
|
||
- modernize-use-trailing-return-type
|
||
|
||
# 架构铁律(供人 / AI 参阅,设计 §3):
|
||
# - core 绝不 include Qt/VTK
|
||
# - VTK actor / RenderWindow 仅由 render 层持有;view 不 new actor
|
||
# - 信号槽连接集中于 *Controller::wireUp()
|